-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.22.3: Support Python 3.11 and 3.12 (#107)
* * Add support for Python versions 3.11 and 3.12 * Update `wheel` version * Update CI to run tests on PY 3.11 and 3.12 * Update `setup.py` to add a `dev` extra which installs dev-related dependencies * Move test dependencies into `requirements-test.txt` * Fix for unit tests in Python 3.8 * update HISTORY.rst * update .editorconfig
- Loading branch information
Showing
12 changed files
with
102 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,14 @@ | ||
pip>=21.3.1 | ||
bump2version==1.0.1 | ||
wheel==0.37.1 | ||
wheel==0.37.1; python_version == "3.6" | ||
wheel==0.42.0; python_version > "3.6" | ||
watchdog[watchmedo]==2.1.6 | ||
flake8>=3 # pyup: ignore | ||
tox==3.24.5 | ||
coverage>=6.2 | ||
Sphinx==4.4.0 | ||
Sphinx==5.3.0 | ||
sphinx-issues==3.0.1; python_version < "3.8" | ||
sphinx-issues==4.0.0; python_version >= "3.8" | ||
twine==3.8.0 | ||
# Extras | ||
pytimeparse==1.1.8 | ||
# Test requirements | ||
pytest==7.0.1 | ||
pytest-mock>=3.6.1 | ||
pytest-cov==3.0.0 | ||
# pytest-runner==5.3.1 | ||
# Benchmark tests | ||
dataclasses-json==0.5.6 | ||
jsons==1.6.1 | ||
dataclass-factory==2.12 # pyup: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pytest==7.0.1 | ||
pytest-mock>=3.6.1 | ||
pytest-cov==3.0.0 | ||
# pytest-runner==5.3.1 | ||
# Benchmark tests | ||
dataclasses-json==0.5.6 | ||
jsons==1.6.1 | ||
dataclass-factory==2.12 # pyup: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters