Skip to content

Commit

Permalink
Modernize Python versions
Browse files Browse the repository at this point in the history
- add support for Python 3.8
- drop support for Python 3.4

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
modified:   appveyor.yml
  • Loading branch information
jugmac00 committed May 1, 2020
1 parent 9c40c8a commit 359163e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
9 changes: 2 additions & 7 deletions .travis.yml
@@ -1,17 +1,12 @@
language: python
sudo: false
python:
- 2.7
- pypy
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy3
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- pip install coveralls coverage
- pip install -e ".[test]"
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,9 @@
4.0.3 (unreleased)
==================

- Nothing changed yet.
- Add Python 3.8 support.

- Drop Python 3.4 support.


4.0.2 (2019-07-11)
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -3,14 +3,14 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
- python: 36-x64
- python: 37
- python: 37-x64
- python: 38
- python: 38-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
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',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -2,10 +2,10 @@
envlist =
py27,
pypy,
py34,
py35,
py36,
py37,
py38,
pypy,
pypy3,
coverage
Expand Down

0 comments on commit 359163e

Please sign in to comment.