Skip to content

Commit de34ab3

Browse files
committed
Fixes setup.py to require mpyq version 0.1.5. Newer versions are too strict to correctly parse incorrectly modified sc2replay files (of which there are more on the web than you might think).
1 parent 52ddc8e commit de34ab3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from setuptools import setup, find_packages
1+
import setuptools
22

3-
setup(
3+
setuptools.setup(
44
name="sc2reader",
55
version="0.2.0",
66
license="MIT",
@@ -28,7 +28,7 @@
2828
],
2929

3030
requires=['mpyq'],
31-
install_requires=['mpyq>=0.1.4'],
31+
install_requires=['mpyq=0.1.5'],
3232
packages=['sc2reader'],
3333
scripts=['scripts/sc2printer'],
34-
)
34+
)

0 commit comments

Comments
 (0)