Skip to content

Commit 495e755

Browse files
authored
Merge pull request #121 from AlmaLinux/update-deps
Update dependencies in bulk
2 parents 0d920a7 + 4120884 commit 495e755

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

build_node/build_node_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def __generate_request_session(self):
320320
retry_strategy = Retry(
321321
total=constants.TOTAL_RETRIES,
322322
status_forcelist=constants.STATUSES_TO_RETRY,
323-
method_whitelist=constants.METHODS_TO_RETRY,
323+
allowed_methods=constants.METHODS_TO_RETRY,
324324
backoff_factor=constants.BACKOFF_FACTOR,
325325
raise_on_status=True,
326326
)

build_node/build_node_supervisor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __generate_request_session(self):
2323
retry_strategy = Retry(
2424
total=constants.TOTAL_RETRIES,
2525
status_forcelist=constants.STATUSES_TO_RETRY,
26-
method_whitelist=constants.METHODS_TO_RETRY,
26+
allowed_methods=constants.METHODS_TO_RETRY,
2727
backoff_factor=constants.BACKOFF_FACTOR,
2828
raise_on_status=True,
2929
)

requirements.txt

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1-
scikit_build==0.12.0
1+
scikit_build==0.18.0
22
cerberus==1.3.5
3-
plumbum==1.7.2
4-
validators==0.18.2
3+
plumbum==1.8.3
4+
validators==0.31.0
55
python-debian==0.1.49
6-
configparser==5.0.2
7-
requests==2.26.0
8-
sentry-sdk==1.12.1
9-
GitPython==3.1.20
10-
gitdb2==2.0.6
11-
pygments==2.10.0
6+
configparser==7.0.0
7+
requests==2.32.3
8+
sentry-sdk==2.8.0
9+
GitPython==3.1.43
10+
pygments==2.18.0
1211
retrying==1.3.4
13-
lmdb==1.2.1
12+
lmdb==1.5.1
1413
#rpm Conflicts with python3-rpm
1514
pycurl==7.45.3
16-
pyicu==2.7.4
17-
pebble==4.6.3
15+
pyicu==2.13.1
1816
pyyaml==6.0.1
1917
filesplit==3.0.2
20-
pulpcore-client==3.14.3
21-
pydantic==1.8.1
18+
pulpcore-client==3.55.1
19+
pydantic==2.8.2
2220
git+https://github.com/AlmaLinux/immudb-wrapper.git@0.1.4#egg=immudb_wrapper

0 commit comments

Comments
 (0)