Skip to content

Commit

Permalink
Merge pull request buildbot#8195 from pmisik/dep-update-2024-w44
Browse files Browse the repository at this point in the history
Fix issues in "Scheduled biweekly dependency update for week 44"
  • Loading branch information
p12tic authored Nov 7, 2024
2 parents ae6875c + 9f813d4 commit 9e8527a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 14 deletions.
8 changes: 8 additions & 0 deletions master/buildbot/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,11 @@
r"which properly escapes HTML. instead",
category=DeprecationWarning,
)

# Warnings comes form ldap3. See https://github.com/cannatag/ldap3/issues/1159
# builtins.DeprecationWarning: typeMap is deprecated. Please use TYPE_MAP instead.
warnings.filterwarnings(
"ignore",
r".* is deprecated\. Please use .* instead\.",
category=DeprecationWarning,
)
23 changes: 12 additions & 11 deletions requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ coverage==7.6.1; python_version < "3.9" # pyup: ignore
docker==7.1.0
hvac==2.3.0
ldap3==2.9.1
mypy==1.12.1
mypy-zope==1.0.8
mypy==1.13.0
mypy-zope==1.0.9
graphql-core==3.3.0a6; python_version >= "3.12" # pyup: ignore (temporary switch to PRE-RELEASE version; remove this once 3.3.0 or newer is released as RELEASE version)
graphql-core==3.2.5; python_version < "3.12"
psutil==6.1.0
Expand All @@ -27,13 +27,13 @@ autobahn==24.4.2; python_version >= "3.9"
autobahn==22.7.1; python_version < "3.9" # pyup: ignore
Automat==24.8.1
boto==2.49.0
boto3==1.35.44
botocore==1.35.44
boto3==1.35.54
botocore==1.35.54
certifi==2024.8.30
cffi==1.17.1
charset-normalizer==3.4.0
constantly==23.10.4
croniter==3.0.3
croniter==5.0.1
cryptography==43.0.3
dill==0.3.9
evalidate==2.0.3
Expand All @@ -47,15 +47,15 @@ jmespath==1.0.1
lz4==4.3.3
zstandard==0.23.0
Brotli==1.1.0
Mako==1.3.5
Mako==1.3.6
MarkupSafe==3.0.2; python_version >= "3.9"
MarkupSafe==2.1.5; python_version < "3.9" # pyup: ignore
moto==5.0.18
moto==5.0.19
msgpack==1.1.0
mypy-extensions==1.0.0
packaging==24.1
parameterized==0.9.0
pyasn1==0.6.0
pyasn1==0.6.1
pyasn1-modules==0.4.1
pycparser==2.22
PyJWT==2.9.0
Expand All @@ -68,7 +68,7 @@ requests==2.32.3
responses==0.25.3
ruff==0.7.2
s3transfer==0.10.3
service-identity==24.1.0
service-identity==24.2.0
setuptools-trial==0.6.0
six==1.16.0
SQLAlchemy==2.0.36
Expand All @@ -81,8 +81,9 @@ typing_extensions==4.12.2
unidiff==0.7.5
# botocore depends on urllib3<1.27
urllib3==1.26.19 # pyup: ignore
Werkzeug==3.0.6
Werkzeug==3.1.1; python_version >= "3.9"
Werkzeug==3.0.6; python_version < "3.9" # pyup: ignore
xmltodict==0.14.2
zope.event==5.0
zope.interface==7.1.0
zope.interface==7.1.1
zope.schema==7.0.1
2 changes: 1 addition & 1 deletion requirements-ciworker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ txaio==23.1.1
typing-extensions==4.7.1; python_version < "3.8" # pyup: ignore
typing-extensions==4.12.2; python_version >= "3.8"
zope.interface==6.4.post2; python_version < "3.8" # pyup: ignore
zope.interface==7.1.0; python_version >= "3.8"
zope.interface==7.1.1; python_version >= "3.8"
-e worker
4 changes: 2 additions & 2 deletions requirements-pip.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pip==24.0; python_version < "3.8" # pyup: ignore
pip==24.2; python_version >= "3.8"
pip==24.3.1; python_version >= "3.8"
setuptools==68.0.0; python_version < "3.8" # pyup: ignore
setuptools==75.2.0; python_version >= "3.8"
setuptools==75.3.0; python_version >= "3.8"
wheel==0.42.0; python_version < "3.8" # pyup: ignore
wheel==0.44.0; python_version >= "3.8"

0 comments on commit 9e8527a

Please sign in to comment.