Skip to content

Commit

Permalink
Add support for Python 3.7. Drop support for Python 3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Apr 9, 2020
1 parent 8121355 commit ec4b30b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 221 deletions.
10 changes: 2 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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:
- os: linux
dist: xenial
sudo: true
python: 3.7
install:
- pip install -U pip setuptools zope.testrunner
- pip install -U coveralls coverage
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Changes
4.3.2 (unreleased)
------------------

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

- Drop support for Python 3.4.


4.3.1 (2018-10-11)
Expand Down
210 changes: 0 additions & 210 deletions bootstrap.py

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,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
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py27,
py34,
py35,
py36,
py37,
py38,
pypy,
pypy3,
coverage
Expand Down

0 comments on commit ec4b30b

Please sign in to comment.