Skip to content

Commit

Permalink
Feature/py37 (#393)
Browse files Browse the repository at this point in the history
* Bump version

* Add py37 support
  • Loading branch information
kvesteri authored Aug 20, 2019
1 parent c4c3d97 commit dcffd76
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: python
sudo: required
dist: xenial

addons:
postgresql: "9.4"
Expand All @@ -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"

Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
^^^^^^^^^^^^^^^^^^^

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@
refresh_materialized_view
)

__version__ = '0.34.1'
__version__ = '0.34.2'
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35, py36, lint
envlist = py27, py35, py36, py37, lint

[testenv]
commands =
Expand All @@ -17,6 +17,9 @@ recreate = True
[testenv:py36]
recreate = True

[testenv:py37]
recreate = True

[testenv:lint]
recreate = True
commands =
Expand Down

0 comments on commit dcffd76

Please sign in to comment.