diff --git a/.travis.yml b/.travis.yml index 8933dbf..1d81c68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,13 @@ language: python +dist: xenial python: - "2.7" - "3.4" - "3.5" - "3.6" + - "3.7" +services: + - postgresql before_install: - CONFIG_FILE=$(sudo -u postgres psql postgres -c "SHOW config_file;" -q -t | head -1) - 'CONFIG_FILE="${CONFIG_FILE:1}"' diff --git a/CHANGES.rst b/CHANGES.rst index 5ad7fc5..4e72379 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,13 +4,13 @@ Changes 1.2 (unreleased) ---------------- -- Nothing changed yet. +* Add support for Python 3.7 1.1 (2019-01-03) ---------------- -- Add support to MySQL using pymysql. +* Add support to MySQL using pymysql. 1.0 (2018-01-31) diff --git a/setup.py b/setup.py index 6a86c16..99410c0 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,7 @@ "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "License :: OSI Approved :: Zope Public License", "Topic :: Software Development :: Libraries :: Python Modules", ], diff --git a/tox.ini b/tox.ini index 1f5cf71..05d3d6e 100644 --- a/tox.ini +++ b/tox.ini @@ -4,6 +4,7 @@ envlist = py34, py35, py36, + py37, # pypy fails because of some weird test error that might be an issue with # sqlalchemy, pypy, and issues with object identity.