From 018d7bb0a03699a57325d771a2a00578cb5befd3 Mon Sep 17 00:00:00 2001 From: brandon Date: Wed, 13 Nov 2024 15:03:58 -0800 Subject: [PATCH 1/2] dropping python 3.8 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index accefdbe..908316e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ packages = [ {include = "**/*.py", from = "src"}, ] readme = "README.md" -version = "0.18.4" +version = "0.19.0" [tool.poetry.dependencies] # For certifi, use ">=" instead of "^" since it upgrades its "major version" every year, not really following semver @@ -17,7 +17,7 @@ certifi = ">=2023.7.22" frozendict = "^2.3.2" pillow = ">=9.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras) pydantic = ">=2.0,<3.0.0" -python = ">=3.8,<4.0" +python = ">=3.9,<4.0" python-dateutil = "^2.9.0" requests = "^2.28.2" typer = "^0.12.3" From d0e9af0c805f034b6bae6d81b69d1d902a49e030 Mon Sep 17 00:00:00 2001 From: brandon Date: Thu, 14 Nov 2024 13:46:29 -0800 Subject: [PATCH 2/2] removing 3.8 from the test matrix --- .github/workflows/cicd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 32b1a423..431747f4 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -130,7 +130,7 @@ jobs: python-version: [ #"3.6", # Default on Ubuntu18.04 but openapi-generator fails # "3.7", # Removed support as of 0.17 - "3.8", + # "3.8", # Removed support as of 0.19 "3.9", "3.10", "3.11",