8000 don't support 'nightly', too hard to run · drinkingjava/python-versioneer@885cbfa · GitHub
[go: up one dir, main page]

Skip to content

Commit 885cbfa

Browse files
committed
don't support 'nightly', too hard to run
our tox.ini must special-case some versions of python, so we can't have travis just run 'tox -e py', and instead have to figure out which tox environment matches up with each travis python environment.
1 parent ce89975 commit 885cbfa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ python:
1414
- "3.4"
1515
- "3.5"
1616
- "3.6"
17-
- "nightly"
1817
- "pypy"
1918
- "pypy3"
2019
install:
2120
# virtualenv>=14.0.0 is incompatible with python 3.2
2221
- if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then pip install -U tox virtualenv; else travis_retry pip install tox "virtualenv<14.0.0"; fi
2322
script:
24-
- if [[ $TRAVIS_PYTHON_VERSION == '3.6-dev' ]]; then tox -e py3.6; else tox -e py${TRAVIS_PYTHON_VERSION}; fi
23+
- tox -e py${TRAVIS_PYTHON_VERSION}
2524
matrix:
2625
allow_failures:
2726
- python: "pypy3"

0 commit comments

Comments
 (0)
0