Merge pull request #269 from ThomasWaldmann/upgrades

travis: drop py33, pip: remove --use-mirrors
This commit is contained in:
TW 2016-08-13 20:03:15 +02:00 committed by GitHub
commit be3253c140
2 changed files with 4 additions and 5 deletions

View File

@ -2,7 +2,6 @@ language: python
python:
- "2.7"
- "pypy"
- "3.3"
- "3.4"
- "3.5"
env:
@ -23,9 +22,9 @@ matrix:
- python: "2.7"
env: DJANGO=1.8.1 COVERAGE="coverage run -m" TEST_K="" TEST_OPTS="--pep8"
install:
- "pip install --use-mirrors Django==$DJANGO"
- "pip install --use-mirrors -r requirements.d/travis.txt"
- "pip install --use-mirrors -e ."
- "pip install Django==$DJANGO"
- "pip install -r requirements.d/travis.txt"
- "pip install -e ."
script: $COVERAGE py.test $TEST_OPTS -k "$TEST_K" -m "not requires_sequential"
after_success:
- coveralls

View File

@ -72,8 +72,8 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: Name Service (DNS)',
],
)