Skip to content

Commit 60b544c

Browse files
committed
Do not test against python 3.5
1 parent 123c757 commit 60b544c

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ install:
1414
- conda create -n test python=$TRAVIS_PYTHON_VERSION isa-l tox
1515
- source activate test
1616

17-
python: 3.5 # Use the oldest supported version of python as default.
17+
python: 3.6 # Use the oldest supported version of python as default.
1818
script:
1919
- tox -e $TOX_ENV
2020
matrix:
@@ -25,12 +25,10 @@ matrix:
2525
- env: TOX_ENV=lint
2626
# UNIT TESTS
2727
# On most recent versions of python.
28-
- env: TOX_ENV=py35
28+
- env: TOX_ENV=py36
2929
after_success:
3030
- pip install codecov
3131
- codecov -v # -v to make sure coverage upload works.
32-
- python: 3.6
33-
env: TOX_ENV=py36
3432
- python: 3.7
3533
env: TOX_ENV=py37
3634
- python: 3.8

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
classifiers=[
5656
"Programming Language :: Python :: 3 :: Only",
5757
"Programming Language :: Python :: 3",
58-
"Programming Language :: Python :: 3.5",
5958
"Programming Language :: Python :: 3.6",
6059
"Programming Language :: Python :: 3.7",
60+
"Programming Language :: Python :: 3.8",
6161
"Programming Language :: Cython",
6262
"Development Status :: 3 - Alpha",
6363
"Topic :: System :: Archiving :: Compression",
6464
"License :: OSI Approved :: MIT License",
6565
],
66-
python_requires=">=3.5", # Because we use type annotation.
66+
python_requires=">=3.6",
6767
setup_requires=["cython"],
6868
install_requires=[],
6969
ext_modules=[

0 commit comments

Comments
 (0)