travis: drop py33, pip: remove --use-mirrors

This commit is contained in:
Thomas Waldmann 2016-08-13 16:26:15 +02:00
parent 9268a2a389
commit 557779051e
2 changed files with 4 additions and 5 deletions

View File

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

View File

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