Skip to content

Commit

Permalink
Update Python versions.
Browse files Browse the repository at this point in the history
- Drop support for Python 3.4.

- Add support for Python 3.8-pre.

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Aug 17, 2019
1 parent 95b0536 commit a5fbd77
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
language: python
sudo: false
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8-pre
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ CHANGES
2.2 (unreleased)
----------------

- Nothing changed yet.
- Add support for Python 3.8-pre.

- Drop support for Python 3.4.


2.1 (2018-11-12)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ def read(*rnames):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8-pre',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[tox]
envlist =
flake8,py27,py34,py35,py36,py37,pypy,pypy3,coverage
flake8,py27,py35,py36,py37,py38,pypy,pypy3,coverage

[testenv]
commands =
Expand Down

0 comments on commit a5fbd77

Please sign in to comment.