From 1f4971c293d1b97db1ca8cd4a6e1cc8d52c2a20d Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 22 Oct 2023 16:03:57 +0200 Subject: [PATCH] Drop support for Python 3.8/9 --- .github/workflows/test.yml | 2 +- poetry.lock | 4 ++-- pyproject.toml | 2 +- requirements.txt | 46 +++++++++++++++++++------------------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a61722a..2f05352 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, windows-2022] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 diff --git a/poetry.lock b/poetry.lock index 3bfb211..1f6f741 100644 --- a/poetry.lock +++ b/poetry.lock @@ -826,5 +826,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = "^3.8.1" -content-hash = "5481a7dc415802d905cfff5dd2f6f3706f3d1cf6a93192c6593b60012c9f4834" +python-versions = "^3.10" +content-hash = "e7df4c8bf11dd1f6553da5c2d9116e337199782cbfc0e60be636f0020451e447" diff --git a/pyproject.toml b/pyproject.toml index 8ac05dd..d5c8c14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = ["Christoph Reiter "] [tool.poetry.dependencies] -python = "^3.8.1" +python = "^3.10" PyGithub = "^2.1.1" tabulate = "^0.9.0" requests = "^2.28.1" diff --git a/requirements.txt b/requirements.txt index 55d687d..ff307c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,23 +1,23 @@ -attrs==23.1.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -cattrs==23.1.2 ; python_full_version >= "3.8.1" and python_version < "4.0" -certifi==2023.7.22 ; python_full_version >= "3.8.1" and python_version < "4.0" -cffi==1.16.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -charset-normalizer==3.3.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -cryptography==41.0.4 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -deprecated==1.2.14 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -exceptiongroup==1.1.3 ; python_full_version >= "3.8.1" and python_version < "3.11" -idna==3.4 ; python_full_version >= "3.8.1" and python_version < "4.0" -platformdirs==3.11.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -pycparser==2.21 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -pygithub==2.1.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -pyjwt[crypto]==2.8.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -pynacl==1.5.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -python-dateutil==2.8.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -requests-cache==1.1.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -requests==2.31.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -six==1.16.0 ; python_full_version >= "3.8.1" and python_version < "4.0" -tabulate==0.9.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -typing-extensions==4.8.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" -url-normalize==1.4.3 ; python_full_version >= "3.8.1" and python_version < "4.0" -urllib3==2.0.7 ; python_full_version >= "3.8.1" and python_version < "4.0" -wrapt==1.15.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" +attrs==23.1.0 ; python_version >= "3.10" and python_version < "4.0" +cattrs==23.1.2 ; python_version >= "3.10" and python_version < "4.0" +certifi==2023.7.22 ; python_version >= "3.10" and python_version < "4.0" +cffi==1.16.0 ; python_version >= "3.10" and python_version < "4.0" +charset-normalizer==3.3.0 ; python_version >= "3.10" and python_version < "4.0" +cryptography==41.0.4 ; python_version >= "3.10" and python_version < "4.0" +deprecated==1.2.14 ; python_version >= "3.10" and python_version < "4.0" +exceptiongroup==1.1.3 ; python_version >= "3.10" and python_version < "3.11" +idna==3.4 ; python_version >= "3.10" and python_version < "4.0" +platformdirs==3.11.0 ; python_version >= "3.10" and python_version < "4.0" +pycparser==2.21 ; python_version >= "3.10" and python_version < "4.0" +pygithub==2.1.1 ; python_version >= "3.10" and python_version < "4.0" +pyjwt[crypto]==2.8.0 ; python_version >= "3.10" and python_version < "4.0" +pynacl==1.5.0 ; python_version >= "3.10" and python_version < "4.0" +python-dateutil==2.8.2 ; python_version >= "3.10" and python_version < "4.0" +requests-cache==1.1.0 ; python_version >= "3.10" and python_version < "4.0" +requests==2.31.0 ; python_version >= "3.10" and python_version < "4.0" +six==1.16.0 ; python_version >= "3.10" and python_version < "4.0" +tabulate==0.9.0 ; python_version >= "3.10" and python_version < "4.0" +typing-extensions==4.8.0 ; python_version >= "3.10" and python_version < "4.0" +url-normalize==1.4.3 ; python_version >= "3.10" and python_version < "4.0" +urllib3==2.0.7 ; python_version >= "3.10" and python_version < "4.0" +wrapt==1.15.0 ; python_version >= "3.10" and python_version < "4.0"