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

Python Requirements Update #185

Merged
merged 1 commit into from
Mar 22, 2024
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
4 changes: 2 additions & 2 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==24.2.0
black==24.3.0
# via -r requirements/quality.txt
cachetools==5.3.3
# via tox
Expand All @@ -24,7 +24,7 @@ click==8.1.7
# black
colorama==0.4.6
# via tox
coverage[toml]==7.4.3
coverage[toml]==7.4.4
# via
# -r requirements/ci.in
# -r requirements/quality.txt
Expand Down
9 changes: 9 additions & 0 deletions requirements/common_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,12 @@ elasticsearch<7.14.0

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

# opentelemetry requires version 6.x at the moment:
# https://github.com/open-telemetry/opentelemetry-python/issues/3570
# Normally this could be added as a constraint in edx-django-utils, where we're
# adding the opentelemetry dependency. However, when we compile pip-tools.txt,
# that uses version 7.x, and then there's no undoing that when compiling base.txt.
# So we need to pin it globally, for now.
# Ticket for unpinning: https://github.com/openedx/edx-lint/issues/407
importlib-metadata<7
8 changes: 4 additions & 4 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==24.2.0
black==24.3.0
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down Expand Up @@ -45,7 +45,7 @@ colorama==0.4.6
# via
# -r requirements/ci.txt
# tox
coverage[toml]==7.4.3
coverage[toml]==7.4.4
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down Expand Up @@ -83,7 +83,7 @@ importlib-metadata==7.0.2
# build
# keyring
# twine
importlib-resources==6.1.3
importlib-resources==6.3.1
# via keyring
iniconfig==2.0.0
# via
Expand Down Expand Up @@ -253,7 +253,7 @@ youtube-dl==2021.12.17
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
zipp==3.17.0
zipp==3.18.1
# via
# -r requirements/pip-tools.txt
# importlib-metadata
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip-tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tomli==2.0.1
# pyproject-hooks
wheel==0.43.0
# via pip-tools
zipp==3.17.0
zipp==3.18.1
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ wheel==0.43.0
# The following packages are considered to be unsafe in a requirements file:
pip==24.0
# via -r requirements/pip.in
setuptools==69.1.1
setuptools==69.2.0
# via -r requirements/pip.in
4 changes: 2 additions & 2 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==24.2.0
black==24.3.0
# via -r requirements/quality.in
certifi==2024.2.2
# via
Expand All @@ -16,7 +16,7 @@ charset-normalizer==3.3.2
# requests
click==8.1.7
# via black
coverage[toml]==7.4.3
coverage[toml]==7.4.4
# via
# -r requirements/test.txt
# pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ charset-normalizer==3.3.2
# via
# -r requirements/base.txt
# requests
coverage[toml]==7.4.3
coverage[toml]==7.4.4
# via
# -r requirements/test.in
# pytest-cov
Expand Down
Loading