Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

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
  • Loading branch information
jugmac00 committed May 14, 2020
1 parent 88efe78 commit d34d72a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
10 changes: 2 additions & 8 deletions .travis.yml
@@ -1,18 +1,12 @@
language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- 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
Expand Up @@ -5,7 +5,9 @@
4.1.1 (unreleased)
==================

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

- Drop support for Python 3.4.


4.1.0 (2018-10-22)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -52,10 +52,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
@@ -1,6 +1,6 @@
[tox]
envlist =
py27, pypy, py34, py35, py36, py37
py27, pypy, py35, py36, py37, py38

[testenv]
commands =
Expand Down

0 comments on commit d34d72a

Please sign in to comment.