From e32a5683089825d1186f046533b129d1fb05b5bf Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 5 Jan 2024 08:58:58 +0100 Subject: [PATCH] ci: upgrade poety 1.6.1 -> 1.7.1 --- .github/workflows/ci.yml | 2 +- tests/test_release.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20a0be1..0ce273a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: - master env: - POETRY_VERSION: "1.6.1" + POETRY_VERSION: "1.7.1" jobs: cs: diff --git a/tests/test_release.py b/tests/test_release.py index caeac76..fdfa554 100644 --- a/tests/test_release.py +++ b/tests/test_release.py @@ -134,7 +134,7 @@ def test_python_version(build: Build, pyproject): version_tuple = version_to_tuple(classifier.split("::")[-1].strip()) if len(version_tuple) > 1: assert version_tuple >= min_version_tuple - assert version_tuple < PY_MAX_VERSION + assert version_tuple <= PY_MAX_VERSION def test_wheel_no_extra_contents(build: Build, version: str):