Skip to content
Snippets Groups Projects
Commit 179c15ed authored by Mateusz Klimaszewski's avatar Mateusz Klimaszewski
Browse files

Fix sentencepiece version per python version.

parent 290a71af
No related branches found
No related tags found
2 merge requests!28Release 1.0.1.,!27Release 1.0.1
This commit is part of merge request !28. Comments created here will be created in the context of that merge request.
...@@ -21,7 +21,9 @@ Run `conda install -c conda-forge jsonnet=0.15.0` and re-run installation. ...@@ -21,7 +21,9 @@ Run `conda install -c conda-forge jsonnet=0.15.0` and re-run installation.
* No package 'sentencepiece' found * No package 'sentencepiece' found
Run `pip install sentencepiece==0.1.83` and re-run installation. Run `pip install sentencepiece==0.1.83` for Python < 3.8 and re-run installation.
Run `pip install sentencepiece==0.1.85` for Python >= 3.8 and re-run installation.
* Missing Cython error * Missing Cython error
......
...@@ -10,7 +10,8 @@ REQUIREMENTS = [ ...@@ -10,7 +10,8 @@ REQUIREMENTS = [
'numpy==1.19.4', 'numpy==1.19.4',
'overrides==3.1.0', 'overrides==3.1.0',
'requests==2.23.0', 'requests==2.23.0',
'sentencepiece==0.1.83', 'sentencepiece==0.1.83;python_version<"3.8"',
'sentencepiece==0.1.85;python_version>="3.8"',
'spacy==2.3.2', 'spacy==2.3.2',
'scikit-learn<=0.23.2', 'scikit-learn<=0.23.2',
'torch==1.6.0', 'torch==1.6.0',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment