diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index ccc7cb9..a4c29be 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -23,7 +23,7 @@ jobs: - name: Build distribution 📦 run: poetry build - name: Store the distribution packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-package-distributions path: dist/ @@ -42,7 +42,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ @@ -63,7 +63,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ diff --git a/poetry.lock b/poetry.lock index 1fa46d3..63d5455 100644 --- a/poetry.lock +++ b/poetry.lock @@ -252,4 +252,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "7186079e07d73938df7b0fac615fb65ddf75aa9e08bf86f40c36c43a5e22dc3d" +content-hash = "b59e7077be421329774a9baf0e303ce92d6fd5f1cf46057db69eaa195bc11c23" diff --git a/pyproject.toml b/pyproject.toml index dd54f6a..bb8ceef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,10 +16,13 @@ Issues = "https://github.com/adayush/olamaps-python/issues" [tool.poetry.dependencies] python = "^3.9" +httpx = "^0.27.0" + + +[tool.poetry.group.test.dependencies] pytest = "^8.2.2" python-dotenv = "^1.0.1" pytest-asyncio = "^0.23.7" -httpx = "^0.27.0" [build-system]