diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b4325b1..d986002c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ jobs: runs-on: blacksmith-4vcpu-ubuntu-2204 strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Check out code from GitHub uses: actions/checkout@v4 @@ -26,7 +26,7 @@ jobs: runs-on: blacksmith-4vcpu-ubuntu-2204 strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Check out code from GitHub uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 69f995f6..78d1769d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,6 @@ Programming Language :: Python Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -134,7 +133,7 @@ def run_tests(self): platforms=['any'], license='BSD', classifiers=classifiers, - python_requires=">=3.8", + python_requires=">=3.9", install_requires=reqs('default.txt'), setup_requires=setup_requires, tests_require=reqs('test.txt'), diff --git a/tox.ini b/tox.ini index a60861d5..c0228d8c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = - {3.8,3.9,3.10,3.11,3.12,3.13,pypy3}-unit - {3.8,3.9,3.10,3.11,3.12,3.13,pypy3}-integration-rabbitmq + {3.9,3.10,3.11,3.12,3.13,pypy3}-unit + {3.9,3.10,3.11,3.12,3.13,pypy3}-integration-rabbitmq flake8 apicheck pydocstyle @@ -25,7 +25,6 @@ commands = basepython = flake8,apicheck,linkcheck,pydocstyle: python3.13 pypy3: pypy3.10 - 3.8: python3.8 3.9: python3.9 3.10: python3.10 3.11: python3.11