Skip to content

Commit c650fc4

Browse files
author
Peter Amstutz
committed
Tweak versioning to reduce chance of future unpleasant suprises from 3rd party
upgrades and clean up requirements.txt.
1 parent 8e2a34e commit c650fc4

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

requirements.txt

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
requests
2-
ruamel.yaml==0.12.4
3-
rdflib>=4.1.
4-
rdflib-jsonld>=0.3.0
5-
mistune
6-
typing>=3.5.2 ; python_version>="2.7"
7-
avro ; python_version<"3"
1+
typing==3.5.2.2 ; python_version>="2.7"
82
avro-python3 ; python_version>="3"
9-
CacheControl
10-
lockfile
3+
avro==1.8.1 ; python_version<"3"

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929

3030
install_requires = [
3131
'setuptools',
32-
'requests>=1.0',
33-
'ruamel.yaml == 0.12.4',
32+
'requests >= 1.0',
33+
'ruamel.yaml >= 0.12.4, < 0.12.5',
3434
'rdflib >= 4.2.0, < 4.3.0',
35-
'rdflib-jsonld >= 0.3.0, <= 0.4.0',
36-
'html5lib >=0.90, <= 0.9999999',
37-
'mistune',
38-
'typing >= 3.5.2',
39-
'CacheControl',
40-
'lockfile >= 0.9']
35+
'rdflib-jsonld >= 0.3.0, < 0.5.0',
36+
'html5lib >= 0.90, <= 0.9999999',
37+
'mistune >= 0.7.3, < 0.8',
38+
'typing >= 3.5.2, < 3.6',
39+
'CacheControl >= 0.11.7, < 0.12',
40+
'lockfile >= 0.9, < 0.13']
4141

4242
install_requires.append("avro") # TODO: remove me once cwltool is
4343
# available in Debian Stable, Ubuntu 12.04 LTS

0 commit comments

Comments
 (0)