Skip to content
Snippets Groups Projects
Commit a3edda39 authored by Łukasz Pszenny's avatar Łukasz Pszenny
Browse files

Support for python 3.9

parent e9b1721f
Branches
Tags
1 merge request!42Release 1.0.5
Pipeline #4338 passed with stage
in 7 minutes and 32 seconds
......@@ -7,15 +7,20 @@ REQUIREMENTS = [
'conllu==2.3.2',
'dataclasses;python_version<"3.7"',
'jsonnet==0.15.0',
'numpy==1.19.4',
'filelock==3.0;python_version>="3.9"',
'numpy==1.19.4;python_version<"3.9"',
'numpy==1.22.0;python_version>="3.9"',
'overrides==3.1.0',
'requests==2.23.0',
'sentencepiece==0.1.83;python_version<"3.8"',
'sentencepiece==0.1.85;python_version>="3.8"',
'sentencepiece==0.1.85;python_version>="3.8" and python_version<"3.9"',
'sentencepiece==0.1.94;python_version>="3.9"',
'scipy<1.6.0;python_version<"3.7"', # SciPy 1.6.0 works for 3.7+
'scipy==1.6.0;python_version>="3.7"',
'spacy==2.3.2',
'scikit-learn<=0.23.2',
'torch==1.7.0',
'scikit-learn<=0.23.2;python_version<"3.9"',
'scikit-learn==0.23.2;python_version>="3.9"',
'torch==1.7.1',
'tqdm==4.43.0',
'transformers==4.0.1',
'urllib3==1.25.11',
......@@ -31,7 +36,10 @@ setup(
license='GPL-3.0',
url='https://gitlab.clarin-pl.eu/syntactic-tools/combo',
keywords="nlp natural-language-processing dependency-parsing",
setup_requires=['pytest-runner', 'pytest-pylint'],
setup_requires=['pytest-runner',
'pytest-pylint',
'numpy==1.22.0;python_version>="3.9"',
'scipy==1.6.0;python_version>="3.7"'],
tests_require=['pytest', 'pylint'],
python_requires='>=3.6',
package_data={'combo': ['config.graph.template.jsonnet', 'config.template.jsonnet']},
......@@ -44,5 +52,6 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)
)
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment