Skip to content

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Jan 30, 2024
1 parent 740d30c commit 763db9d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', 'pypy-3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', 'pypy-3.10', '3.11', '3.12']

runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
==================

- Add support for Python 3.11 and 3.12.
- Drop support for Python 3.8. The minimum supported version is now 3.9.
- Depend on newer ``zest.releaser >= 9.1.1``.
- Remove dependency on setuptools; now uses the so-called
"native" namespace packages.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def _read(fname):
'Natural Language :: English',
'Operating System :: OS Independent',
'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 @@ -80,5 +79,5 @@ def _read(fname):
'zest.releaser[recommended]',
],
},
python_requires=">=3.8",
python_requires=">=3.9",
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,py311,py312,pypy310,coverage,docs
envlist = py39,py310,py311,py312,pypy310,coverage,docs

[testenv]
extras = test
Expand All @@ -17,7 +17,7 @@ commands =
coverage report -i
coverage html -i
coverage xml -i
depends = py38,py39,py310,pypy38,docs
depends = py39,py310,pypy310,docs
parallel_show_output = true

[testenv:docs]
Expand Down

0 comments on commit 763db9d

Please sign in to comment.