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 #629

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
3 changes: 2 additions & 1 deletion requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ wrapt==1.14.*

# edx-lint>=5.3.0 and/or pylint>=2.15 throws a bunch of unknown option value errors
edx-lint<5.3
pylint<2.15
pylint<2.15;python_version<"3.9"
pylint>2.15;python_version>"3.9"
astroid<2.12

# Stay on LTS release
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pylint==2.14.5
pylint==2.14.5 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# -r requirements/validation.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pylint==2.14.5
pylint==2.14.5 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# -r requirements/test.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pylint==2.14.5
pylint==2.14.5 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# edx-lint
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pylint==2.14.5
pylint==2.14.5 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# edx-lint
Expand Down
2 changes: 1 addition & 1 deletion requirements/validation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pylint==2.14.5
pylint==2.14.5 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# -r requirements/quality.txt
Expand Down
Loading