We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0c2921 + d84b5d9 commit 5658f40Copy full SHA for 5658f40
1 file changed
setup.py
@@ -23,21 +23,20 @@
23
packages=setuptools.find_packages(),
24
install_requires=[
25
'six',
26
- 'hexdump==3.3',
27
- 'xmltodict==0.13.0', #added deps for evtx_dump_json.py script
+ 'hexdump>=3.3',
+ 'xmltodict>=0.12.0', #added deps for evtx_dump_json.py script
28
29
# pin deps for python 2, see #67
30
- 'more_itertools==5.0.0',
31
- 'zipp==1.0.0',
32
- 'configparser==4.0.2',
33
- 'pyparsing==2.4.7',
+ 'more_itertools>=5.0.0',
+ 'zipp>=1.0.0',
+ 'pyparsing>=2.4.7',
34
],
35
extras_require={
36
# For running unit tests & coverage
37
"test": [
38
- 'pytest-cov==2.11.1',
39
- 'pytest==4.6.11',
40
- 'lxml==4.6.3',
+ 'pytest-cov>=2.11.1',
+ 'pytest>=4.6.11',
+ 'lxml>=4.6.3',
41
]
42
},
43
scripts=['scripts/evtx_dump.py',
0 commit comments