From dcffd76e51fd5cf00b3e5a1b02bad6cfaab78084 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Tue, 20 Aug 2019 15:09:17 +0300 Subject: [PATCH] Feature/py37 (#393) * Bump version * Add py37 support --- .travis.yml | 7 ++++++- CHANGES.rst | 6 ++++++ setup.py | 1 + sqlalchemy_utils/__init__.py | 2 +- tox.ini | 5 ++++- 5 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4f765632..10a6ec00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: python +sudo: required +dist: xenial addons: postgresql: "9.4" @@ -23,7 +25,10 @@ matrix: - python: 3.6 env: - "TOXENV=py36" - - python: 3.6 + - python: 3.7 + env: + - "TOXENV=py37" + - python: 3.7 env: - "TOXENV=lint" diff --git a/CHANGES.rst b/CHANGES.rst index 6dc59469..699ddfc3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.34.2 (2019-08-20) +^^^^^^^^^^^^^^^^^^^ + +- Remove ABC deprecation warnings (#386, pull request courtesy of VizualAbstract) + + 0.34.1 (2019-07-15) ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 8e6a23a9..e907f6d3 100644 --- a/setup.py +++ b/setup.py @@ -93,6 +93,7 @@ def get_version(): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ] diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index f2b49530..f191225a 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -100,4 +100,4 @@ refresh_materialized_view ) -__version__ = '0.34.1' +__version__ = '0.34.2' diff --git a/tox.ini b/tox.ini index c9cd18f9..bc3f1072 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py35, py36, lint +envlist = py27, py35, py36, py37, lint [testenv] commands = @@ -17,6 +17,9 @@ recreate = True [testenv:py36] recreate = True +[testenv:py37] +recreate = True + [testenv:lint] recreate = True commands =