From 42f28774e133b7bff75a59d7d75c3a276e7aadf9 Mon Sep 17 00:00:00 2001 From: Andy Freeland Date: Thu, 28 Mar 2019 23:37:50 -0700 Subject: [PATCH 1/3] Add Python 3.7 to Travis --- .travis.yml | 2 ++ setup.py | 1 + tox.ini | 1 + 3 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8933dbf..6473c1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,11 @@ language: python +dist: xenial python: - "2.7" - "3.4" - "3.5" - "3.6" + - "3.7" 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/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. From a1eb25e28d195cf7f81f4cb8ddc370e30bfd7b74 Mon Sep 17 00:00:00 2001 From: Andy Freeland Date: Thu, 28 Mar 2019 23:47:20 -0700 Subject: [PATCH 2/3] Explicitly include Postgres on Travis --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 6473c1d..1d81c68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ python: - "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}"' From cc48ea3b7f6b3917d275077ef1c87e03d40bf08b Mon Sep 17 00:00:00 2001 From: Andy Freeland Date: Fri, 29 Mar 2019 10:26:23 -0700 Subject: [PATCH 3/3] Update CHANGES.rst --- CHANGES.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)