Skip to content

Commit 9690b97

Browse files
chore: Upgrade Python requirements (#284)
1 parent a7b287e commit 9690b97

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

requirements/common_constraints.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@ Django<6.0
1818
# elastic search changelog: https://www.elastic.co/guide/en/enterprise-search/master/release-notes-7.14.0.html
1919
# See https://github.com/openedx/edx-platform/issues/35126 for more info
2020
elasticsearch<7.14.0
21+
22+
# pip 26 is incompatible with pip-tools hence causing failures during the build process
23+
# Make upgrade command and all requirements upgrade jobs are broken due to this.
24+
# The constraint can be removed once a release (pip-tools > 7.5.2) is available with support for pip 26
25+
# Issue to track this dependency and unpin later on: https://github.com/jazzband/pip-tools/issues/2319
26+
pip<26.0

requirements/development.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
#
55
# make upgrade
66
#
7-
asgiref==3.11.0 # via -r requirements/testing.txt, django
8-
astroid==4.0.3 # via -r requirements/testing.txt, pylint
7+
asgiref==3.11.1 # via -r requirements/testing.txt, django
8+
astroid==4.0.4 # via -r requirements/testing.txt, pylint
99
dill==0.4.1 # via -r requirements/testing.txt, pylint
10-
django==5.2.10 # via -c requirements/common_constraints.txt, -r requirements/testing.txt
10+
django==5.2.11 # via -c requirements/common_constraints.txt, -r requirements/testing.txt
1111
iniconfig==2.3.0 # via -r requirements/testing.txt, pytest
1212
isort==7.0.0 # via -r requirements/testing.txt, pylint
1313
mccabe==0.7.0 # via -r requirements/testing.txt, pylint

requirements/pip_tools.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ pyproject-hooks==1.2.0 # via build, pip-tools
1212
wheel==0.46.3 # via pip-tools
1313

1414
# The following packages are considered to be unsafe in a requirements file:
15-
pip==25.3 # via pip-tools
16-
setuptools==80.10.2 # via pip-tools
15+
pip==25.3 # via -c requirements/common_constraints.txt, pip-tools
16+
setuptools==82.0.0 # via pip-tools

requirements/sandbox.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
#
55
# make upgrade
66
#
7-
numpy==2.4.1 # via -r requirements/sandbox.in
7+
numpy==2.4.2 # via -r requirements/sandbox.in
88
six==1.17.0 # via -r requirements/sandbox.in

requirements/testing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# make upgrade
66
#
7-
asgiref==3.11.0 # via django
8-
astroid==4.0.3 # via pylint
7+
asgiref==3.11.1 # via django
8+
astroid==4.0.4 # via pylint
99
dill==0.4.1 # via pylint
1010
iniconfig==2.3.0 # via pytest
1111
isort==7.0.0 # via -r requirements/testing.in, pylint

requirements/tox.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
cachetools==6.2.5 # via tox
7+
cachetools==7.0.0 # via tox
88
chardet==5.2.0 # via tox
99
colorama==0.4.6 # via tox
1010
distlib==0.4.0 # via virtualenv

0 commit comments

Comments
 (0)