We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946bfff commit 9925b7bCopy full SHA for 9925b7b
.travis.yml
@@ -26,7 +26,7 @@ if: type != push OR branch = master OR branch =~ /^\d+\.\d+(\.\d+)?(-\S*)?$/
26
27
install: pip install tox
28
script:
29
- - tox
+ - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then tox; fi;
30
# Deploy to github releases, and pypi.
31
# https://docs.travis-ci.com/user/deployment/
32
# travis osx has python3.6 installed.
setup.py
@@ -100,7 +100,7 @@ def load_pycparser(finder, module):
100
"thorpy",
101
"pymunk>=5.4.2",
102
],
103
- version='0.0.18',
+ version='0.0.19',
104
entry_points={
105
'console_scripts': [
106
'stuntcat=stuntcat.cli:main',
0 commit comments