Skip to content
Merged
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
38 changes: 9 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,40 +26,20 @@ jobs:
matrix:
os: [ubuntu-latest]
name:
- Python 3.9 Tests
- Python 3.10 Tests
- Python 3.11 Tests
- Python 3.12 Tests
- Python 3.13 Tests
- Python 3.12 Tests Coverage
- Python 3.14 Tests
- Python 3.14 Tests Coverage
- Code Checks
include:
- name: Python 3.9 Tests
python: 3.9
- name: Python 3.14 Tests
python: '3.14'
toxdir: cli
toxenv: py39-nocov
- name: Python 3.10 Tests
python: '3.10'
toxenv: py314-nocov
- name: Python 3.14 Tests Coverage
python: '3.14'
toxdir: cli
toxenv: py310-nocov
- name: Python 3.11 Tests
python: '3.11'
toxdir: cli
toxenv: py311-nocov
- name: Python 3.12 Tests
python: '3.12'
toxdir: cli
toxenv: py312-nocov
- name: Python 3.13 Tests
python: '3.13'
toxdir: cli
toxenv: py313-nocov
- name: Python 3.12 Tests Coverage
python: 3.12
toxdir: cli
toxenv: py312-cov
toxenv: py314-cov
- name: Code Checks
python: 3.12
python: '3.14'
toxdir: cli
toxenv: code-linters

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def read(fname):
license="Apache License 2.0",
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
python_requires=">=3.9",
python_requires=">=3.14",
install_requires=requires,
entry_points=dict(console_scripts=console_scripts),
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39,310,311,312,313}-cov
py{314}-cov
code-linters

# Default testenv. Used to run tests on all python versions.
Expand Down
Loading