-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Drop Python 3.6, add 3.10 * Add line on 3.10 support to changelog
- Loading branch information
Showing
14 changed files
with
72 additions
and
88 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Drop support for Python 3.6, add support and pre-built packages for Python 3.10 | ||
(pr #841) |
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,10 +1,15 @@ | ||
[pytest] | ||
filterwarnings = | ||
error | ||
# FIXME Until we fix socket leaks in tests | ||
default:unclosed event loop:ResourceWarning | ||
# https://github.com/docker/docker-py/issues/1293 | ||
ignore:.*docker.sock.*:ResourceWarning | ||
ignore:distutils Version classes are deprecated:DeprecationWarning:docker | ||
ignore:distutils .* deprecated:DeprecationWarning:docker | ||
# From gssapi, but with improper stack | ||
ignore:_SixMetaPathImporter.*not found:ImportWarning | ||
# Actually comes from docker importing distutils on Windows | ||
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning:pywintypes | ||
markers = | ||
ssl: Tests that require SSL certificates to run | ||
asyncio_mode = auto |
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,19 +1,18 @@ | ||
-r requirements-cython.txt | ||
flake8==4.0.1 | ||
black==22.3.0 | ||
mypy==0.910 | ||
mypy==0.961 | ||
isort[colors]==5.10.0 | ||
pytest==6.1.2 | ||
pytest==7.1.2 | ||
pytest-cov==3.0.0 | ||
pytest-asyncio==0.16.0 | ||
pytest-asyncio==0.18.3 | ||
docker==5.0.3 | ||
chardet==4.0.0 # Until fixed requests is released | ||
lz4==3.1.3 | ||
xxhash==2.0.2 | ||
python-snappy==0.6.0 | ||
python-snappy==0.6.1 | ||
docutils==0.17.1 | ||
Pygments==2.10.0 | ||
gssapi==1.7.2 | ||
dataclasses==0.8; python_version<"3.7" | ||
async_generator==1.10; python_version<"3.7" | ||
gssapi==1.7.3 | ||
async-timeout==4.0.1 | ||
zstandard==0.16.0 |
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 +1 @@ | ||
Cython==0.29.24 | ||
Cython==0.29.30 |
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,14 @@ | ||
-r requirements-cython.txt | ||
flake8==4.0.1 | ||
black==22.3.0 | ||
mypy==0.910 | ||
mypy==0.961 | ||
isort[colors]==5.10.0 | ||
pytest==6.1.2 | ||
pytest==7.1.2 | ||
pytest-cov==3.0.0 | ||
pytest-asyncio==0.16.0 | ||
pytest-asyncio==0.18.3 | ||
docker==5.0.3 | ||
chardet==4.0.0 # Until fixed requests is released | ||
lz4==3.1.3 | ||
xxhash==2.0.2 | ||
python-snappy==0.6.0 | ||
dataclasses==0.8; python_version<"3.7" | ||
async_generator==1.10; python_version<"3.7" | ||
python-snappy==0.6.1 | ||
zstandard==0.16.0 |
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
Oops, something went wrong.