Skip to content

Commit 6385c96

Browse files
authored
Make package dependencies more specific about versions. (#237)
1 parent d6c9b1e commit 6385c96

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

requirements.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
requests
2-
ruamel.yaml == 0.12.4
3-
rdflib >= 4.1.0
4-
rdflib-jsonld >= 0.3.0
1+
requests>=1.0
2+
ruamel.yaml==0.12.4
3+
rdflib==4.2.1
4+
rdflib-jsonld == 0.3.0
55
shellescape
66
schema-salad==1.20.20161122192122
77
typing>=3.5.2
88
cwltest>=1.0.20160907111242
9+
html5lib >=0.90, <= 0.9999999

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,16 @@
4242
'schemas/v1.1.0-dev1/salad/schema_salad/metaschema/*.md',
4343
'cwlNodeEngine.js']},
4444
install_requires=[
45-
'setuptools >= 18.5', # needed by html5lib
46-
'requests',
45+
'setuptools',
46+
'requests>=1.0',
4747
'ruamel.yaml == 0.12.4',
48-
'rdflib >= 4.1.0',
49-
'rdflib-jsonld >= 0.3.0',
48+
'rdflib >= 4.2.0, < 4.3.0',
49+
'rdflib-jsonld == 0.3.0',
50+
'html5lib >=0.90, <= 0.9999999',
5051
'shellescape',
5152
'schema-salad >= 1.20.20161122192122, < 2',
5253
'typing >= 3.5.2',
5354
'cwltest >= 1.0.20160907111242'],
54-
setup_requires=[
55-
'setuptools >= 18.5'],
5655
test_suite='tests',
5756
tests_require=[],
5857
entry_points={

0 commit comments

Comments
 (0)