Skip to content

Commit

Permalink
fix: Constrain nltk version for py35 sandbox
Browse files Browse the repository at this point in the history
nltk 3.6.3 drops support for python 3.5.
  • Loading branch information
ericfab179 committed Oct 15, 2021
1 parent fe68828 commit 2a371e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions requirements/edx-sandbox/py35-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ sympy<1.7.0 # sympy 1.7.0 drops support for Python 3.5

markupsafe<2.0.0 # markupsafe 2.0.0 requires Python >= 3.6

nltk<3.6.3 # nltk 3.6.3 drops support for Python 3.5

cryptography<3.3 # cryptography 3.3 has dropped python3.5 support.
PyJWT[crypto]<2.0.0 # PYJWT[crypto]==2.0.1 requires cryptography>=3.3.1
social-auth-core<4.0.0 # social-auth-core>=4.0.0 requires PYJWT>=2.0.0
2 changes: 1 addition & 1 deletion requirements/edx-sandbox/py35.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cryptography # Implementations of assorted cryptography a
lxml # XML parser
matplotlib==2.2.4 # 2D plotting library
networkx==2.2 # Utilities for creating, manipulating, and studying network graphs
nltk # Natural language processing; used by the chem package
nltk==3.6.2 # Natural language processing; used by the chem package
numpy==1.16.5 # Numeric array processing utilities; used by scipy
openedx-calc<2.0.0
pyparsing==2.2.0 # Python Parsing module
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx-sandbox/py35.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ networkx==2.2
# via
# -c requirements/edx-sandbox/../constraints.txt
# -r requirements/edx-sandbox/py35.in
nltk==3.6.5
nltk==3.6.2
# via
# -r requirements/edx-sandbox/py35.in
# chem
Expand Down

0 comments on commit 2a371e8

Please sign in to comment.