Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT: Drop Python 3.8 and 3.9, and add support for Python 3.13 #21

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Bump min pytest to 6.2
pllim committed Oct 1, 2024

Unverified

This user has not yet uploaded their public signing key.
commit f9eec0e86fe7fd0ae33d34bde0e7d8fb64713e73
25 changes: 2 additions & 23 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -21,37 +21,16 @@ jobs:
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytestoldest
- os: windows-latest
python-version: '3.10'
toxenv: py310-test-pytest50
- os: macos-12
python-version: '3.10'
toxenv: py310-test-pytest51
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest52
- os: windows-latest
python-version: '3.10'
toxenv: py310-test-pytest53
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest60
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest61
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest62
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest70
- os: ubuntu-latest
- os: windows-latest
python-version: '3.10'
toxenv: py310-test-pytest71
- os: windows-latest
python-version: '3.11'
toxenv: py311-test-pytest72
- os: ubuntu-latest
- os: macos-12
python-version: '3.11'
toxenv: py311-test-pytest73
- os: ubuntu-latest
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
0.3.0 (unreleased)
==================

- Dropped Python 3.8 and 3.9 support. Added support for Python 3.13. [#21]
- Dropped Python 3.8 and 3.9 support. Added support for Python 3.13.
Minimum supported pytest is now 6.2. [#21]

0.2.0 (2024-03-04)
==================
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ zip_safe = False
packages = find:
python_requires = >=3.10
install_requires =
pytest>=4.6
pytest>=6.2
packaging

[options.entry_points]
@@ -42,7 +42,7 @@ test =
pytest-cov

[tool:pytest]
minversion = 4.6
minversion = 6.2
testpaths = tests pytest_filter_subpackage
xfail_strict = true
filterwarnings =
9 changes: 1 addition & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -11,14 +11,7 @@ isolated_build = true
changedir = .tmp/{envname}
description = run tests with pytest
deps =
pytestoldest: pytest==4.6.0
pytest50: pytest==5.0.*
pytest51: pytest==5.1.*
pytest52: pytest==5.2.*
pytest53: pytest==5.3.*
pytest60: pytest==6.0.*
pytest61: pytest==6.1.*
pytest62: pytest==6.2.*
pytestoldest: pytest==6.2.0
pytest70: pytest==7.0.*
pytest71: pytest==7.1.*
pytest72: pytest==7.2.*