Skip to content

Commit 9c09555

Browse files
committed
Update python versions
1 parent 0c11e36 commit 9c09555

File tree

8 files changed

+6
-18
lines changed

8 files changed

+6
-18
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
strategy:
9-
max-parallel: 7
9+
max-parallel: 5
1010
matrix:
11-
python-version: ["pypy-3.9", "pypy-3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

CONTRIBUTING.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,9 @@ Ready to contribute? Here's how to set up `jsonmodels` for local development.
8484

8585
Now you can make your changes locally.
8686

87-
5. When you're done making changes, check that your changes pass the tests, including testing other Python versions with tox::
87+
5. When you're done making changes, check that your changes pass the tests:
8888

8989
$ pytest
90-
$ tox
91-
92-
To get tox, just pip install them into your virtualenv.
9390

9491
6. Commit your changes and push your branch to GitHub::
9592

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ help:
55
@echo "clean-pyc - remove Python file artifacts"
66
@echo "lint - check style with flake8"
77
@echo "test - run tests quickly with the default Python"
8-
@echo "test-all - run tests on every Python version with tox"
98
@echo "coverage - check code coverage quickly with the default Python"
109
@echo "docs - generate Sphinx HTML documentation, including API docs"
1110
@echo "release - package and upload a release"
@@ -30,9 +29,6 @@ lint:
3029
test:
3130
python setup.py test
3231

33-
test-all:
34-
tox
35-
3632
coverage:
3733
python setup.py test
3834
coverage html

history/1765305359937317-2681eb1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Removed support for PyPy.

history/1765305379256114-8cc7bb9

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Removed support for Python 3.8 and 3.9.

history/1765305394331882-c0e0955

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added support for Python 3.13 and 3.14.

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ pyflakes
1515
pytest
1616
pytest-cov
1717
sphinxcontrib-spelling
18-
tox
1918
virtualenv
2019
wheel

tox.ini

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)