Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Py3.10 requirements #59953

Merged
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
341 changes: 173 additions & 168 deletions .pre-commit-config.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def _install_requirements(
"install",
"--progress-bar=off",
"-U",
"pip",
"pip>=20.2.4",
"setuptools!=50.*,!=51.*,!=52.*",
]
session.run(*install_command, silent=PIP_INSTALL_SILENT)
Expand Down
254 changes: 134 additions & 120 deletions requirements/pyobjc.txt

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions requirements/static/ci/darwin.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
# pylxd(or likely ws4py) will cause the test suite to hang at the finish line under runtests.py
# pylxd>=2.2.5
yamlordereddictloader
pygit2>=1.2.0; python_version >= '3.7'
2 changes: 1 addition & 1 deletion requirements/static/ci/freebsd.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# FreeBSD static CI requirements
pygit2==1.5.0
pygit2==1.5.0; python_version >= '3.7'
5 changes: 2 additions & 3 deletions requirements/static/ci/linux.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Linux static CI requirements
pyiface
pygit2<=0.28.2; python_version < '3.8'
pygit2<1.1.0; python_version == '3.8'
pygit2>=1.4.0; python_version >= '3.9'
pygit2<1.1.0; python_version <= '3.8'
pygit2>=1.4.0; python_version > '3.8'
18 changes: 18 additions & 0 deletions requirements/static/ci/py3.10/changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/static/ci/py3.10/changelog.txt requirements/static/ci/changelog.in
#
click==7.1.2
# via towncrier
incremental==17.5.0
# via towncrier
jinja2==2.11.2
# via towncrier
markupsafe==1.1.1
# via jinja2
toml==0.10.1
# via towncrier
towncrier==19.2.0
# via -r requirements/static/ci/changelog.in
57 changes: 57 additions & 0 deletions requirements/static/ci/py3.10/cloud.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/static/ci/py3.10/cloud.txt requirements/static/ci/cloud.in
#
apache-libcloud==2.5.0
# via -r requirements/static/ci/cloud.in
certifi==2019.3.9
# via requests
cffi==1.14.4
# via cryptography
chardet==3.0.4
# via requests
cryptography==3.3.2
# via
# requests-ntlm
# smbprotocol
idna==2.8
# via requests
netaddr==0.7.19
# via -r requirements/static/ci/cloud.in
ntlm-auth==1.3.0
# via
# requests-ntlm
# smbprotocol
profitbricks==4.1.3
# via -r requirements/static/ci/cloud.in
pyasn1==0.4.5
# via smbprotocol
pycparser==2.19
# via cffi
pypsexec==0.1.0
# via -r requirements/static/ci/cloud.in
pywinrm==0.3.0
# via -r requirements/static/ci/cloud.in
requests-ntlm==1.1.0
# via pywinrm
requests==2.21.0
# via
# apache-libcloud
# profitbricks
# pywinrm
# requests-ntlm
six==1.15.0
# via
# cryptography
# profitbricks
# pypsexec
# pywinrm
# smbprotocol
smbprotocol==0.1.1
# via pypsexec
urllib3==1.24.2
# via requests
xmltodict==0.12.0
# via pywinrm
10 changes: 10 additions & 0 deletions requirements/static/ci/py3.10/darwin-crypto.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/static/ci/py3.10/darwin-crypto.txt requirements/static/ci/crypto.in
#
m2crypto==0.35.2
# via -r requirements/static/ci/crypto.in
pycryptodome==3.9.7
# via -r requirements/static/ci/crypto.in
Loading