Skip to content

Commit

Permalink
Drop Python <= 3.5, add Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 14, 2020
1 parent 918a732 commit 3fedb62
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 26 deletions.
11 changes: 2 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -e .[test]
script:
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.8 (unreleased)
----------------

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

- Drop support for Python 3.3, 3.4, and 3.5.


4.7 (2018-10-04)
Expand Down
16 changes: 6 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
environment:

matrix:
- python : 27
- python : 27-x64
- python : 33
- python : 33-x64
- python : 34
- python : 34-x64
- python : 35
- python : 35-x64
- python : 36
- python : 36-x64
- python: 27
- python: 27-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
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,11 @@ def read(*rnames):
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Zope :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,py36,py37,pypy,pypy3
py27,py36,py37,py38,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit 3fedb62

Please sign in to comment.