Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'),
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
Loading