Skip to content

Commit 1b99481

Browse files
committed
chore: Run make upgrade
This is not necessary for fixing issues but is good maintenance to do.
1 parent 4f5bb4b commit 1b99481

File tree

7 files changed

+47
-59
lines changed

7 files changed

+47
-59
lines changed

requirements/common_constraints.txt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ Django<5.0
1717

1818
# elasticsearch>=7.14.0 includes breaking changes in it which caused issues in discovery upgrade process.
1919
# elastic search changelog: https://www.elastic.co/guide/en/enterprise-search/master/release-notes-7.14.0.html
20+
# See https://github.com/openedx/edx-platform/issues/35126 for more info
2021
elasticsearch<7.14.0
2122

2223
# django-simple-history>3.0.0 adds indexing and causes a lot of migrations to be affected
2324
django-simple-history==3.0.0
2425

25-
# opentelemetry requires version 6.x at the moment:
26-
# https://github.com/open-telemetry/opentelemetry-python/issues/3570
27-
# Normally this could be added as a constraint in edx-django-utils, where we're
28-
# adding the opentelemetry dependency. However, when we compile pip-tools.txt,
29-
# that uses version 7.x, and then there's no undoing that when compiling base.txt.
30-
# So we need to pin it globally, for now.
31-
# Ticket for unpinning: https://github.com/openedx/edx-lint/issues/407
32-
importlib-metadata<7
26+
# Cause: https://github.com/openedx/event-tracking/pull/290
27+
# event-tracking 2.4.1 upgrades to pymongo 4.4.0 which is not supported on edx-platform.
28+
# We will pin event-tracking to do not break existing installations
29+
# This can be unpinned once https://github.com/openedx/edx-platform/issues/34586
30+
# has been resolved and edx-platform is running with pymongo>=4.4.0
31+
event-tracking<2.4.1

requirements/development.txt

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
astroid==3.1.0 # via -r requirements/testing.txt, pylint
8-
dill==0.3.8 # via -r requirements/testing.txt, pylint
9-
exceptiongroup==1.2.1 # via -r requirements/testing.txt, pytest
7+
astroid==3.3.5 # via -r requirements/testing.txt, pylint
8+
dill==0.3.9 # via -r requirements/testing.txt, pylint
109
iniconfig==2.0.0 # via -r requirements/testing.txt, pytest
1110
isort==5.13.2 # via -r requirements/testing.txt, pylint
1211
mccabe==0.7.0 # via -r requirements/testing.txt, pylint
13-
packaging==24.0 # via -r requirements/testing.txt, pytest
14-
platformdirs==4.2.1 # via -r requirements/testing.txt, pylint
12+
packaging==24.1 # via -r requirements/testing.txt, pytest
13+
platformdirs==4.3.6 # via -r requirements/testing.txt, pylint
1514
pluggy==1.5.0 # via -r requirements/testing.txt, pytest
16-
pycodestyle==2.11.1 # via -r requirements/testing.txt
17-
pylint==3.1.0 # via -r requirements/testing.txt
18-
pytest==8.1.1 # via -r requirements/testing.txt
19-
tomli==2.0.1 # via -r requirements/testing.txt, pylint, pytest
20-
tomlkit==0.12.4 # via -r requirements/testing.txt, pylint
21-
typing-extensions==4.11.0 # via -r requirements/testing.txt, astroid, pylint
15+
pycodestyle==2.12.1 # via -r requirements/testing.txt
16+
pylint==3.3.1 # via -r requirements/testing.txt
17+
pytest==8.3.3 # via -r requirements/testing.txt
18+
tomlkit==0.13.2 # via -r requirements/testing.txt, pylint

requirements/pip.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
wheel==0.43.0 # via -r requirements/pip.in
7+
wheel==0.44.0 # via -r requirements/pip.in
88

99
# The following packages are considered to be unsafe in a requirements file:
10-
pip==24.0 # via -r requirements/pip.in
11-
setuptools==69.5.1 # via -r requirements/pip.in
10+
pip==24.2 # via -r requirements/pip.in
11+
setuptools==75.2.0 # via -r requirements/pip.in

requirements/pip_tools.txt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
build==1.2.1 # via pip-tools
7+
build==1.2.2.post1 # via pip-tools
88
click==8.1.7 # via pip-tools
9-
importlib-metadata==6.11.0 # via -c requirements/common_constraints.txt, build
10-
packaging==24.0 # via build
9+
packaging==24.1 # via build
1110
pip-tools==7.4.1 # via -r requirements/pip_tools.in
12-
pyproject-hooks==1.0.0 # via build, pip-tools
13-
tomli==2.0.1 # via build, pip-tools, pyproject-hooks
14-
wheel==0.43.0 # via pip-tools
15-
zipp==3.18.1 # via importlib-metadata
11+
pyproject-hooks==1.2.0 # via build, pip-tools
12+
wheel==0.44.0 # via pip-tools
1613

1714
# The following packages are considered to be unsafe in a requirements file:
1815
# pip

requirements/sandbox.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
77
asgiref==3.8.1 # via django
88
django==3.2.25 # via -c requirements/common_constraints.txt, -c requirements/constraints.txt, -r requirements/sandbox.in
9-
numpy==1.24.4 # via -r requirements/sandbox.in
10-
pytz==2024.1 # via django
9+
numpy==2.1.2 # via -r requirements/sandbox.in
10+
pytz==2024.2 # via django
1111
six==1.16.0 # via -r requirements/sandbox.in
12-
sqlparse==0.5.0 # via django
13-
typing-extensions==4.11.0 # via asgiref
12+
sqlparse==0.5.1 # via django

requirements/testing.txt

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
astroid==3.1.0 # via pylint
8-
dill==0.3.8 # via pylint
9-
exceptiongroup==1.2.1 # via pytest
7+
astroid==3.3.5 # via pylint
8+
dill==0.3.9 # via pylint
109
iniconfig==2.0.0 # via pytest
1110
isort==5.13.2 # via -r requirements/testing.in, pylint
1211
mccabe==0.7.0 # via pylint
13-
packaging==24.0 # via pytest
14-
platformdirs==4.2.1 # via pylint
12+
packaging==24.1 # via pytest
13+
platformdirs==4.3.6 # via pylint
1514
pluggy==1.5.0 # via pytest
16-
pycodestyle==2.11.1 # via -r requirements/testing.in
17-
pylint==3.1.0 # via -r requirements/testing.in
18-
pytest==8.1.1 # via -r requirements/testing.in
19-
tomli==2.0.1 # via pylint, pytest
20-
tomlkit==0.12.4 # via pylint
21-
typing-extensions==4.11.0 # via astroid, pylint
15+
pycodestyle==2.12.1 # via -r requirements/testing.in
16+
pylint==3.3.1 # via -r requirements/testing.in
17+
pytest==8.3.3 # via -r requirements/testing.in
18+
tomlkit==0.13.2 # via pylint

requirements/tox.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# make upgrade
66
#
7-
cachetools==5.3.3 # via tox
7+
cachetools==5.5.0 # via tox
88
chardet==5.2.0 # via tox
99
colorama==0.4.6 # via tox
10-
distlib==0.3.8 # via virtualenv
11-
filelock==3.13.4 # via tox, virtualenv
12-
packaging==24.0 # via pyproject-api, tox
13-
platformdirs==4.2.1 # via tox, virtualenv
10+
distlib==0.3.9 # via virtualenv
11+
filelock==3.16.1 # via tox, virtualenv
12+
packaging==24.1 # via pyproject-api, tox
13+
platformdirs==4.3.6 # via tox, virtualenv
1414
pluggy==1.5.0 # via tox
15-
pyproject-api==1.6.1 # via tox
16-
tomli==2.0.1 # via pyproject-api, tox
17-
tox==4.14.2 # via -r requirements/tox.in
18-
virtualenv==20.26.0 # via tox
15+
pyproject-api==1.8.0 # via tox
16+
tox==4.22.0 # via -r requirements/tox.in
17+
virtualenv==20.26.6 # via tox

0 commit comments

Comments
 (0)