Skip to content

Commit a2bc2b3

Browse files
authored
Added [email protected]: Github CI & tox.ini (#579)
1 parent 16f2bda commit a2bc2b3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os:
1414
- ubuntu-latest
1515
python-version:
16-
["3.9", "3.10", "3.11", "3.12", "3.13", pypy3.9, pypy3.10]
16+
["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", pypy3.9, pypy3.10]
1717

1818
steps:
1919
- uses: actions/checkout@v4

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ python =
88
3.11: py311
99
3.12: py312
1010
3.13: py313, lint, manifest
11+
3.14: py314
1112
pypy-3.9: pypy3
1213

1314
[testenv]
@@ -16,11 +17,11 @@ deps =
1617
pytest-cov
1718
sh >= 2.0.2, <3
1819
click
19-
py{39,310,311,312,313,pypy3}: ipython
20+
py{39,310,311,312,313,3.14,pypy3}: ipython
2021
commands = pytest --cov --cov-report=term-missing --cov-config setup.cfg {posargs}
2122
depends =
22-
py{39,310,311,312,313},pypy3: coverage-clean
23-
coverage-report: py{39,310,311,312,313},pypy3
23+
py{39,310,311,312,313,314},pypy3: coverage-clean
24+
coverage-report: py{39,310,311,312,313,314},pypy3
2425

2526
[testenv:lint]
2627
skip_install = true
@@ -30,6 +31,7 @@ deps =
3031
commands =
3132
ruff check src
3233
ruff check tests
34+
mypy --python-version=3.14 src tests
3335
mypy --python-version=3.13 src tests
3436
mypy --python-version=3.12 src tests
3537
mypy --python-version=3.11 src tests

0 commit comments

Comments
 (0)