File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ install:
14
14
- conda create -n test python=$TRAVIS_PYTHON_VERSION isa-l tox
15
15
- source activate test
16
16
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.
18
18
script :
19
19
- tox -e $TOX_ENV
20
20
matrix :
@@ -25,12 +25,10 @@ matrix:
25
25
- env : TOX_ENV=lint
26
26
# UNIT TESTS
27
27
# On most recent versions of python.
28
- - env : TOX_ENV=py35
28
+ - env : TOX_ENV=py36
29
29
after_success :
30
30
- pip install codecov
31
31
- codecov -v # -v to make sure coverage upload works.
32
- - python : 3.6
33
- env : TOX_ENV=py36
34
32
- python : 3.7
35
33
env : TOX_ENV=py37
36
34
- python : 3.8
Original file line number Diff line number Diff line change 55
55
classifiers = [
56
56
"Programming Language :: Python :: 3 :: Only" ,
57
57
"Programming Language :: Python :: 3" ,
58
- "Programming Language :: Python :: 3.5" ,
59
58
"Programming Language :: Python :: 3.6" ,
60
59
"Programming Language :: Python :: 3.7" ,
60
+ "Programming Language :: Python :: 3.8" ,
61
61
"Programming Language :: Cython" ,
62
62
"Development Status :: 3 - Alpha" ,
63
63
"Topic :: System :: Archiving :: Compression" ,
64
64
"License :: OSI Approved :: MIT License" ,
65
65
],
66
- python_requires = ">=3.5" , # Because we use type annotation.
66
+ python_requires = ">=3.6" ,
67
67
setup_requires = ["cython" ],
68
68
install_requires = [],
69
69
ext_modules = [
You can’t perform that action at this time.
0 commit comments