Skip to content

Commit

Permalink
Merge pull request #84 from xambroz/master
Browse files Browse the repository at this point in the history
weaken the dependency rules for use with python3+Fedora
  • Loading branch information
williballenthin authored Apr 2, 2023
2 parents e0c2921 + d84b5d9 commit 5658f40
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,20 @@
packages=setuptools.find_packages(),
install_requires=[
'six',
'hexdump==3.3',
'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

# pin deps for python 2, see #67
'more_itertools==5.0.0',
'zipp==1.0.0',
'configparser==4.0.2',
'pyparsing==2.4.7',
'more_itertools>=5.0.0',
'zipp>=1.0.0',
'pyparsing>=2.4.7',
],
extras_require={
# For running unit tests & coverage
"test": [
'pytest-cov==2.11.1',
'pytest==4.6.11',
'lxml==4.6.3',
'pytest-cov>=2.11.1',
'pytest>=4.6.11',
'lxml>=4.6.3',
]
},
scripts=['scripts/evtx_dump.py',
Expand Down

0 comments on commit 5658f40

Please sign in to comment.