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

feanil/fix 3.12 tests #87

Closed
wants to merge 3 commits into from
Closed
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
8 changes: 5 additions & 3 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ async-timeout==4.0.3
# via redis
attrs==23.2.0
# via openedx-events
backports-zoneinfo==0.2.1
# via django
backports-zoneinfo==0.2.1 ; python_version < "3.9"
# via
# -r requirements/base.in
# django
cffi==1.16.0
# via pynacl
click==8.1.7
Expand Down Expand Up @@ -52,7 +54,7 @@ jinja2==3.1.3
# via code-annotations
markupsafe==2.1.5
# via jinja2
newrelic==9.7.0
newrelic==9.7.1
# via edx-django-utils
openedx-events==9.5.2
# via -r requirements/base.in
Expand Down
9 changes: 5 additions & 4 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ attrs==23.2.0
# via
# -r requirements/quality.txt
# openedx-events
backports-zoneinfo==0.2.1
backports-zoneinfo==0.2.1 ; python_version < "3.9"
# via
# -r requirements/quality.txt
# django
Expand Down Expand Up @@ -128,8 +128,9 @@ filelock==3.13.1
# -r requirements/ci.txt
# tox
# virtualenv
importlib-metadata==7.0.2
importlib-metadata==6.11.0
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/pip-tools.txt
# build
iniconfig==2.0.0
Expand All @@ -155,7 +156,7 @@ mccabe==0.7.0
# via
# -r requirements/quality.txt
# pylint
newrelic==9.7.0
newrelic==9.7.1
# via
# -r requirements/quality.txt
# edx-django-utils
Expand Down Expand Up @@ -321,7 +322,7 @@ virtualenv==20.25.1
# tox
walrus==0.9.3
# via -r requirements/quality.txt
wheel==0.42.0
wheel==0.43.0
# via
# -r requirements/pip-tools.txt
# pip-tools
Expand Down
7 changes: 4 additions & 3 deletions requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ babel==2.14.0
# via
# pydata-sphinx-theme
# sphinx
backports-zoneinfo==0.2.1
backports-zoneinfo==0.2.1 ; python_version < "3.9"
# via
# -r requirements/test.txt
# django
Expand Down Expand Up @@ -105,8 +105,9 @@ idna==3.6
# via requests
imagesize==1.4.1
# via sphinx
importlib-metadata==7.0.2
importlib-metadata==6.11.0
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# build
# keyring
# sphinx
Expand Down Expand Up @@ -140,7 +141,7 @@ mdurl==0.1.2
# via markdown-it-py
more-itertools==10.2.0
# via jaraco-classes
newrelic==9.7.0
newrelic==9.7.1
# via
# -r requirements/test.txt
# edx-django-utils
Expand Down
8 changes: 5 additions & 3 deletions requirements/pip-tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ build==1.1.1
# via pip-tools
click==8.1.7
# via pip-tools
importlib-metadata==7.0.2
# via build
importlib-metadata==6.11.0
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# build
packaging==24.0
# via build
pip-tools==7.4.1
Expand All @@ -23,7 +25,7 @@ tomli==2.0.1
# build
# pip-tools
# pyproject-hooks
wheel==0.42.0
wheel==0.43.0
# via pip-tools
zipp==3.17.0
# via importlib-metadata
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
wheel==0.42.0
wheel==0.43.0
# via -r requirements/pip.in

# The following packages are considered to be unsafe in a requirements file:
Expand Down
4 changes: 2 additions & 2 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ attrs==23.2.0
# via
# -r requirements/test.txt
# openedx-events
backports-zoneinfo==0.2.1
backports-zoneinfo==0.2.1 ; python_version < "3.9"
# via
# -r requirements/test.txt
# django
Expand Down Expand Up @@ -108,7 +108,7 @@ markupsafe==2.1.5
# jinja2
mccabe==0.7.0
# via pylint
newrelic==9.7.0
newrelic==9.7.1
# via
# -r requirements/test.txt
# edx-django-utils
Expand Down
5 changes: 5 additions & 0 deletions requirements/test.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ pytest-cov # pytest extension for code coverage statistics
pytest-django # pytest extension for better Django support
code-annotations # provides commands used by the pii_check make target.
ddt # Run a test case multiple times with different input

# Needed during Python 3.12 upgrade so that
# we can run requirements upgrade in 3.8 and
# get Python 3.12 compatible requirements.
backports.zoneinfo;python_version<"3.9"
5 changes: 3 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ attrs==23.2.0
# via
# -r requirements/base.txt
# openedx-events
backports-zoneinfo==0.2.1
backports-zoneinfo==0.2.1 ; python_version < "3.9"
# via
# -r requirements/base.txt
# -r requirements/test.in
# django
cffi==1.16.0
# via
Expand Down Expand Up @@ -83,7 +84,7 @@ markupsafe==2.1.5
# via
# -r requirements/base.txt
# jinja2
newrelic==9.7.0
newrelic==9.7.1
# via
# -r requirements/base.txt
# edx-django-utils
Expand Down
Loading