Skip to content

Commit dcffd76

Browse files
authored
Feature/py37 (kvesteri#393)
* Bump version * Add py37 support
1 parent c4c3d97 commit dcffd76

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
language: python
2+
sudo: required
3+
dist: xenial
24

35
addons:
46
postgresql: "9.4"
@@ -23,7 +25,10 @@ matrix:
2325
- python: 3.6
2426
env:
2527
- "TOXENV=py36"
26-
- python: 3.6
28+
- python: 3.7
29+
env:
30+
- "TOXENV=py37"
31+
- python: 3.7
2732
env:
2833
- "TOXENV=lint"
2934

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Changelog
44
Here you can see the full list of changes between each SQLAlchemy-Utils release.
55

66

7+
0.34.2 (2019-08-20)
8+
^^^^^^^^^^^^^^^^^^^
9+
10+
- Remove ABC deprecation warnings (#386, pull request courtesy of VizualAbstract)
11+
12+
713
0.34.1 (2019-07-15)
814
^^^^^^^^^^^^^^^^^^^
915

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ def get_version():
9393
'Programming Language :: Python :: 3.4',
9494
'Programming Language :: Python :: 3.5',
9595
'Programming Language :: Python :: 3.6',
96+
'Programming Language :: Python :: 3.7',
9697
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
9798
'Topic :: Software Development :: Libraries :: Python Modules'
9899
]

sqlalchemy_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@
100100
refresh_materialized_view
101101
)
102102

103-
__version__ = '0.34.1'
103+
__version__ = '0.34.2'

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py35, py36, lint
2+
envlist = py27, py35, py36, py37, lint
33

44
[testenv]
55
commands =
@@ -17,6 +17,9 @@ recreate = True
1717
[testenv:py36]
1818
recreate = True
1919

20+
[testenv:py37]
21+
recreate = True
22+
2023
[testenv:lint]
2124
recreate = True
2225
commands =

0 commit comments

Comments
 (0)