Skip to content

Commit

Permalink
Drop support for Python < 3.9
Browse files Browse the repository at this point in the history
We also update the CI test matrix to reflect this.

Signed-off-by: Stephen Finucane <[email protected]>
  • Loading branch information
stephenfin committed Dec 11, 2024
1 parent 6865fdb commit 8467843
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10']
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout source code
uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.13'
- name: Install dependencies
run: python -m pip install build
- name: Build a binary wheel and a source tarball
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ def read(fname):
'click-man = click_man.__main__:cli',
]
},
python_requires='>=3.9',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Documentation',
],
)
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
# and then run "tox" from this directory.

[tox]
minversion = 3.1
envlist = py37,py38,py39,py310
ignore_basepython_conflict = true
minversion = 4.4
envlist = py39,py310,py311,py312,py313

[testenv]
basepython = python3
deps =
pytest
pytest-cov
Expand Down

0 comments on commit 8467843

Please sign in to comment.