Skip to content

Commit

Permalink
Drop support for Python 3.4, add support for Python 3.8. (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Oct 17, 2019
1 parent 1a62988 commit 829c415
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
@@ -1,11 +1,10 @@
language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
services:
- postgresql
before_install:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,9 @@ Changes
1.2 (unreleased)
----------------

* Add support for Python 3.7
* Drop support for Python 3.4.

* Add support for Python 3.7 and 3.8.

* Fix deprecation warnings for the event system. We already used it in general
but still leveraged the old extenion mechanism in some places.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -30,10 +30,10 @@
"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",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,10 +1,10 @@
[tox]
envlist =
py27,
py34,
py35,
py36,
py37,
py38,
# pypy fails because of some weird test error that might be an issue with
# sqlalchemy, pypy, and issues with object identity.

Expand Down

0 comments on commit 829c415

Please sign in to comment.