Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
a3edda39
Commit
a3edda39
authored
3 years ago
by
Łukasz Pszenny
Browse files
Options
Downloads
Patches
Plain Diff
Support for python 3.9
parent
e9b1721f
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!42
Release 1.0.5
Pipeline
#4338
passed with stage
in 7 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+15
-6
15 additions, 6 deletions
setup.py
with
15 additions
and
6 deletions
setup.py
+
15
−
6
View file @
a3edda39
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment