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
7ea1ec2f
Commit
7ea1ec2f
authored
2 years ago
by
Łukasz Pszenny
Browse files
Options
Downloads
Patches
Plain Diff
Update setup.py so it can be run on python 3.7
parent
4496b975
No related merge requests found
Pipeline
#6509
passed with stage
in 7 minutes and 34 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+7
-5
7 additions, 5 deletions
setup.py
with
7 additions
and
5 deletions
setup.py
+
7
−
5
View file @
7ea1ec2f
...
...
@@ -8,7 +8,8 @@ REQUIREMENTS = [
'
dataclasses;python_version<
"
3.7
"'
,
'
jsonnet==0.15.0
'
,
'
filelock==3.0
'
,
'
numpy==1.22.0
'
,
'
numpy==1.22.0;python_version>=
"
3.8
"'
,
'
numpy==1.21.6;python_version<
"
3.8
"'
,
'
overrides==3.1.0
'
,
'
requests==2.23.0
'
,
'
sentencepiece==0.1.83;python_version<
"
3.8
"'
,
...
...
@@ -35,10 +36,11 @@ setup(
url
=
'
https://gitlab.clarin-pl.eu/syntactic-tools/combo
'
,
keywords
=
"
nlp natural-language-processing dependency-parsing
"
,
setup_requires
=
[
'
pytest-runner
'
,
'
pytest-pylint
'
,
'
scikit-learn==0.23.2
'
,
'
numpy==1.22.0
'
,
'
scipy==1.6.0;python_version>=
"
3.7
"'
],
'
pytest-pylint
'
,
'
scikit-learn==0.23.2
'
,
'
numpy==1.22.0;python_version>=
"
3.8
"'
,
'
numpy==1.21.6;python_version<
"
3.8
"'
,
'
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
'
]},
...
...
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