Skip to content

Commit

Permalink
Remove py35.
Browse files Browse the repository at this point in the history
  • Loading branch information
hengfengli committed Dec 6, 2018
1 parent b5ad9fd commit 803223c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ matrix:
env: TOXENV=typecheck
os: linux
dist: xenial
- python: 3.5.0
env: TOXENV=py35 IDENT="3.5.0" RUN_SUITE=y USE_PYENV=y
os: linux
- python: 3.6.0
env: TOXENV=py36 IDENT="3.6.0" RUN_SUITE=y USE_PYENV=y
os: linux
Expand All @@ -39,6 +36,7 @@ install:
pyenv install "${IDENT}"
pyenv global "${IDENT}"
fi
- sudo rm -f /etc/boto.cfg
- pip list
- travis_retry pip install -U tox
after_success:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Expand Down Expand Up @@ -49,7 +48,7 @@
packages=find_packages(),
package_dir={'kcpy': 'kcpy'},
include_package_data=True,
python_requires='>=3.5.0',
python_requires='>=3.6.0',
classifiers=classifiers,
keywords=[
'kinesis',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py36,py35,flake8,typecheck
envlist = py37,py36,flake8,typecheck
skipsdist = True

[testenv]
Expand All @@ -14,7 +14,6 @@ commands = py.test -xv --cov=kcpy
basepython =
py37,flake8,typecheck: python3.7
py36: python3.6
py35: python3.5

[testenv:flake8]
commands =
Expand Down

0 comments on commit 803223c

Please sign in to comment.