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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 7
max-parallel: 5
matrix:
python-version: ["pypy-3.9", "pypy-3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 1 addition & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,9 @@ Ready to contribute? Here's how to set up `jsonmodels` for local development.

Now you can make your changes locally.

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

$ pytest
$ tox

To get tox, just pip install them into your virtualenv.

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

Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ help:
@echo "clean-pyc - remove Python file artifacts"
@echo "lint - check style with flake8"
@echo "test - run tests quickly with the default Python"
@echo "test-all - run tests on every Python version with tox"
@echo "coverage - check code coverage quickly with the default Python"
@echo "docs - generate Sphinx HTML documentation, including API docs"
@echo "release - package and upload a release"
Expand All @@ -30,9 +29,6 @@ lint:
test:
python setup.py test

test-all:
tox

coverage:
python setup.py test
coverage html
Expand Down
1 change: 1 addition & 0 deletions history/1765305359937317-2681eb1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed support for PyPy.
1 change: 1 addition & 0 deletions history/1765305379256114-8cc7bb9
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed support for Python 3.8 and 3.9.
1 change: 1 addition & 0 deletions history/1765305394331882-c0e0955
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added support for Python 3.13 and 3.14.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ pyflakes
pytest
pytest-cov
sphinxcontrib-spelling
tox
virtualenv
wheel
7 changes: 0 additions & 7 deletions tox.ini

This file was deleted.

Loading