-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pypy version and linting Go without tox-gh Specify tox environment Fix jsonschema version for python versions Restrict pytest version by python version Prevent syntax and import errors on <3.7 python versions
- Loading branch information
1 parent
3ad3b45
commit a1e57c4
Showing
6 changed files
with
25 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
flake8 | ||
wheel>=0.29 | ||
coveralls>=1.1 | ||
pytest~=7.2.0 | ||
pytest-cov~=4.0.0 | ||
pytest-flakes~=1.0.1 | ||
pytest~=7.0; python_version >= '3.6' | ||
pytest; python_version == '3.5' | ||
pytest-cov~=4.0.0; python_version == '3.11' | ||
nose~=1.3.7 | ||
Sphinx~=1.4.8 | ||
sphinx-rtd-theme~=0.1.9 | ||
requests>=2.20.0 | ||
urllib3>=1.24.2 | ||
bumpversion~=0.5.3 | ||
aiohttp~=3.8.3 | ||
aiohttp~=3.8.3; python_version >= '3.7' | ||
mocket~=1.6.0 | ||
pytest-asyncio~=0.20.3 | ||
pytest-asyncio~=0.20.3; python_version >= '3.7' |
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,3 +1,4 @@ | ||
jsonschema>=4.19.2 | ||
jsonschema~=4.0; python_version >= '3.6' | ||
jsonschema~=3.0; python_version == '3.5' | ||
xmltodict>=0.13.0 | ||
furl>=2.1.3 |
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