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 311 testing #34202

Closed
wants to merge 5 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
2 changes: 1 addition & 1 deletion .github/workflows/migrations-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
python-version: [ "3.10" ]
python-version: [ "3.11" ]
# 'pinned' is used to install the latest patch version of Django
# within the global constraint i.e. Django==4.2.8 in current case
# because we have global constraint of Django<4.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests-gh-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10' ]
python-version: [ '3.11' ]
django-version:
- "pinned"
# When updating the shards, remember to make the same changes in
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ '3.10' ]
python-version: [ '3.11' ]
django-version:
- "pinned"
steps:
Expand Down
4 changes: 2 additions & 2 deletions requirements/edx-sandbox/py38.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ nltk==3.8.1
# via
# -r requirements/edx-sandbox/py38.in
# chem
numpy==1.22.4
numpy
# via
# chem
# contourpy
Expand All @@ -76,7 +76,7 @@ random2==1.0.2
# via -r requirements/edx-sandbox/py38.in
regex==2023.12.25
# via nltk
scipy==1.7.3
scipy
# via
# -c requirements/edx-sandbox/../constraints.txt
# -r requirements/edx-sandbox/py38.in
Expand Down
4 changes: 2 additions & 2 deletions requirements/edx/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ nltk==3.8.1
# via chem
nodeenv==1.8.0
# via -r requirements/edx/kernel.in
numpy==1.22.4
numpy
# via
# chem
# openedx-calc
Expand Down Expand Up @@ -1029,7 +1029,7 @@ s3transfer==0.10.0
# via boto3
sailthru-client==2.2.3
# via edx-ace
scipy==1.7.3
scipy
# via
# -c requirements/edx/../constraints.txt
# chem
Expand Down
4 changes: 2 additions & 2 deletions requirements/edx/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ nodeenv==1.8.0
# -r requirements/edx/assets.txt
# -r requirements/edx/doc.txt
# -r requirements/edx/testing.txt
numpy==1.22.4
numpy
# via
# -r requirements/edx/doc.txt
# -r requirements/edx/testing.txt
Expand Down Expand Up @@ -1795,7 +1795,7 @@ sailthru-client==2.2.3
# -r requirements/edx/doc.txt
# -r requirements/edx/testing.txt
# edx-ace
scipy==1.7.3
scipy
# via
# -c requirements/edx/../constraints.txt
# -r requirements/edx/doc.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/edx/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ nltk==3.8.1
# chem
nodeenv==1.8.0
# via -r requirements/edx/base.txt
numpy==1.22.4
numpy
# via
# -r requirements/edx/base.txt
# chem
Expand Down Expand Up @@ -1226,7 +1226,7 @@ sailthru-client==2.2.3
# via
# -r requirements/edx/base.txt
# edx-ace
scipy==1.7.3
scipy
# via
# -c requirements/edx/../constraints.txt
# -r requirements/edx/base.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/edx/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ nltk==3.8.1
# chem
nodeenv==1.8.0
# via -r requirements/edx/base.txt
numpy==1.22.4
numpy
# via
# -r requirements/edx/base.txt
# chem
Expand Down Expand Up @@ -1353,7 +1353,7 @@ sailthru-client==2.2.3
# via
# -r requirements/edx/base.txt
# edx-ace
scipy==1.7.3
scipy
# via
# -c requirements/edx/../constraints.txt
# -r requirements/edx/base.txt
Expand Down
2 changes: 1 addition & 1 deletion xmodule/tests/xml/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __repr__(self):

# Extract all argument names used to construct XmlImportData objects,
# so that the factory doesn't treat them as XML attributes
XML_IMPORT_ARGS = inspect.getargspec(XmlImportData.__init__).args # lint-amnesty, pylint: disable=deprecated-method
XML_IMPORT_ARGS = inspect.getfullargspec(XmlImportData.__init__).args # lint-amnesty, pylint: disable=deprecated-method


class XmlImportFactory(Factory):
Expand Down
Loading