From 599b3629ed16270add087942bf2ac9fcb9e85f6d Mon Sep 17 00:00:00 2001 From: Ryan Kanno Date: Fri, 25 Oct 2024 03:48:06 -1000 Subject: [PATCH] build: updated poetry (#457) --- .github/workflows/ci.yml | 4 ++-- .github/workflows/docs.yml | 2 +- tests/conftest.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c98f038..eac24d69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install poetry==1.5.1 tox==4.11.3 tox-gh + python -m pip install poetry==1.8.4 tox==4.11.3 tox-gh - name: Cache pre-commit uses: actions/cache@v4 with: @@ -62,7 +62,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install poetry==1.5.1 tox==4.11.3 tox-gh + python -m pip install poetry==1.8.4 tox==4.11.3 tox-gh - name: Cache tox env uses: actions/cache@v4 with: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 257c85e3..fab64354 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -34,7 +34,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install poetry==1.5.1 tox==4.11.3 tox-gh + python -m pip install poetry==1.8.4 tox==4.11.3 tox-gh - name: Cache pre-commit uses: actions/cache@v4 with: diff --git a/tests/conftest.py b/tests/conftest.py index b078c497..b0f6f435 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,7 +26,7 @@ def default_context(request: SubRequest) -> Dict[str, str]: # noqa: ARG001 "version": "0.0.1", "python_version": "3.11", "supported_python_versions": "3.9, 3.10, 3.11, 3.12, pypy3.9, pypy3.10", # noqa: B950, E501 - "poetry_version": "1.7.0", + "poetry_version": "1.8.4", "should_use_direnv": "y", "should_create_author_files": "y", "should_install_github_dependabot": "y",