We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb28a86 commit 611321dCopy full SHA for 611321d
requirements.txt
@@ -1,5 +1,5 @@
1
lxml>=3.3.5
2
-networkx
+networkx>=2.0
3
python-dateutil>=2.2
4
six>=1.9.0
5
pydot>=1.2.0
setup.py
@@ -11,9 +11,9 @@
11
readme = f.read()
12
13
requirements = [
14
- 'python-dateutil',
15
- 'networkx',
16
- 'lxml',
+ 'python-dateutil>=2.2',
+ 'networkx>=2.0',
+ 'lxml>=3.3.5',
17
'six>=1.9.0',
18
'rdflib>=4.2.1'
19
]
@@ -24,7 +24,7 @@
24
25
setup(
26
name='prov',
27
- version='1.5.1',
+ version='1.5.2',
28
description='A library for W3C Provenance Data Model supporting PROV-JSON, '
29
'PROV-XML and PROV-O (RDF)',
30
long_description=readme,
0 commit comments