Skip to content
Prev Previous commit
Next Next commit
merge setup.py
  • Loading branch information
Dominik Neise committed Jun 29, 2019
commit 8d226e35e0e2278b4e3436976335365cce2fe2b3
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ version: 2.0
build_and_test: &build_and_test_steps
- checkout
- run: sudo pip install -r requirements.txt
- run: pip install --user .
- run: sudo pip install pytest
- run: python --version ; pip --version ; pwd ; ls -l
#- run: pytest # test_s2gs test_replays
- run: python -m unittest discover test_s2gs
- run: python -m unittest discover test_replays
- run: pytest


jobs:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@
"sc2json = sc2reader.scripts.sc2json:main",
]
},
install_requires=["mpyq>=0.2.3", "argparse", "ordereddict", "unittest2", "pil"]
install_requires=['mpyq>=0.2.3', 'argparse', 'ordereddict', 'unittest2', 'pil']
if float(sys.version[:3]) < 2.7
else ["mpyq>=0.2.4"],
else ['mpyq>=0.2.4'],
tests_require=["pytest"],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=True,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.