Skip to content

Commit

Permalink
fix: temporarily use previous version of astroid to avoid recursion e…
Browse files Browse the repository at this point in the history
…rrors
  • Loading branch information
mariajgrimaldi committed Jan 24, 2024
1 parent a91fa64 commit b78d72d
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 12 deletions.
2 changes: 1 addition & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ platformdirs==4.1.0
# via
# tox
# virtualenv
pluggy==1.3.0
pluggy==1.4.0
# via tox
pyproject-api==1.6.1
# via tox
Expand Down
5 changes: 5 additions & 0 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@

# Latest previous version has issues with doc8 because of conflicting docutils constraints
sphinx-book-theme==0.4.0rc1

# Temporary solution since this version raises RecursionError for test_generate_avro_schemas.py
# This should be removed once the issue is fixed with a new astroid release or with a test_generate_avro_schemas.py
# module refactor.
astroid<3.0.0
17 changes: 13 additions & 4 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ asgiref==3.7.2
# via
# -r requirements/quality.txt
# django
astroid==3.0.2
astroid==2.15.8
# via
# -c requirements/constraints.txt
# -r requirements/quality.txt
# pylint
# pylint-celery
Expand Down Expand Up @@ -65,7 +66,7 @@ coverage[toml]==7.4.0
# -r requirements/quality.txt
# coverage
# pytest-cov
cryptography==41.0.7
cryptography==42.0.0
# via
# -r requirements/quality.txt
# secretstorage
Expand Down Expand Up @@ -147,6 +148,10 @@ keyring==24.3.0
# via
# -r requirements/quality.txt
# twine
lazy-object-proxy==1.10.0
# via
# -r requirements/quality.txt
# astroid
markdown-it-py==3.0.0
# via
# -r requirements/quality.txt
Expand Down Expand Up @@ -197,7 +202,7 @@ platformdirs==4.1.0
# pylint
# tox
# virtualenv
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand All @@ -218,7 +223,7 @@ pygments==2.17.2
# diff-cover
# readme-renderer
# rich
pylint==3.0.3
pylint==2.17.7
# via
# -r requirements/quality.txt
# edx-lint
Expand Down Expand Up @@ -359,6 +364,10 @@ wheel==0.42.0
# via
# -r requirements/pip-tools.txt
# pip-tools
wrapt==1.16.0
# via
# -r requirements/quality.txt
# astroid
zipp==3.17.0
# via
# -r requirements/pip-tools.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ coverage[toml]==7.4.0
# -r requirements/test.txt
# coverage
# pytest-cov
cryptography==41.0.7
cryptography==42.0.0
# via secretstorage
ddt==1.7.1
# via -r requirements/test.txt
Expand Down Expand Up @@ -120,7 +120,7 @@ pbr==6.0.0
# stevedore
pkginfo==1.9.6
# via twine
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/test.txt
# pytest
Expand Down
13 changes: 9 additions & 4 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ asgiref==3.7.2
# via
# -r requirements/test.txt
# django
astroid==3.0.2
astroid==2.15.8
# via
# -c requirements/constraints.txt
# pylint
# pylint-celery
attrs==23.2.0
Expand Down Expand Up @@ -37,7 +38,7 @@ coverage[toml]==7.4.0
# -r requirements/test.txt
# coverage
# pytest-cov
cryptography==41.0.7
cryptography==42.0.0
# via secretstorage
ddt==1.7.1
# via -r requirements/test.txt
Expand Down Expand Up @@ -89,6 +90,8 @@ jinja2==3.1.3
# code-annotations
keyring==24.3.0
# via twine
lazy-object-proxy==1.10.0
# via astroid
markdown-it-py==3.0.0
# via rich
markupsafe==2.1.4
Expand All @@ -115,7 +118,7 @@ pkginfo==1.9.6
# via twine
platformdirs==4.1.0
# via pylint
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/test.txt
# pytest
Expand All @@ -129,7 +132,7 @@ pygments==2.17.2
# via
# readme-renderer
# rich
pylint==3.0.3
pylint==2.17.7
# via
# edx-lint
# pylint-celery
Expand Down Expand Up @@ -221,6 +224,8 @@ urllib3==2.1.0
# via
# requests
# twine
wrapt==1.16.0
# via astroid
zipp==3.17.0
# via
# importlib-metadata
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pbr==6.0.0
# via
# -r requirements/base.txt
# stevedore
pluggy==1.3.0
pluggy==1.4.0
# via pytest
pymongo==3.13.0
# via
Expand Down

0 comments on commit b78d72d

Please sign in to comment.