Skip to content

Commit

Permalink
Add support for Python 3.8 and drop support for 3.4 and 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Aug 7, 2020
1 parent b0246e3 commit d2ea96a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 224 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,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 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 @@ -5,7 +5,9 @@
5.0.1 (unreleased)
==================

- Nothing changed yet.
- Drop support for Python 3.4 and 3.5.

- Add support for Python 3.8.


5.0.0 (2019-09-23)
Expand Down
210 changes: 0 additions & 210 deletions bootstrap.py

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ 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
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
envlist =
flake8,
py27,
py34,
py35,
py36,
py37,
py38,
pypy,
pypy3,
coverage
Expand All @@ -20,7 +19,7 @@ deps =
[testenv:coverage]
usedevelop = true
basepython =
python3.6
python3.8
commands =
coverage run -m zope.testrunner --test-path=src
coverage report --fail-under=100
Expand All @@ -30,7 +29,7 @@ deps =


[testenv:flake8]
basepython = python2.7
basepython = python3.8
skip_install = true
deps = flake8
commands = flake8 --doctests src setup.py

0 comments on commit d2ea96a

Please sign in to comment.