Skip to content

Commit

Permalink
Drop py34, add py37 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Jul 15, 2019
1 parent 4a04b5c commit 7a9bf16
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: python

dist: xenial

addons:
postgresql: "9.4"

Expand All @@ -16,16 +18,16 @@ matrix:
- python: 2.7
env:
- "TOXENV=py27"
- python: 3.4
env:
- "TOXENV=py34"
- python: 3.5
env:
- "TOXENV=py35"
- python: 3.6
env:
- "TOXENV=py36"
- python: 3.6
- python: 3.7
env:
- "TOXENV=py37"
- python: 3.7
env:
- "TOXENV=lint"

Expand Down
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Utils release.


0.34.1 (2019-07-15)
^^^^^^^^^^^^^^^^^^^

- Remove deprecation warnings (#379, pull request courtesy of Le-Stagiaire)
- Drop py34 support


0.34.0 (2019-06-09)
^^^^^^^^^^^^^^^^^^^

Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, lint
envlist = py27, py35, py36, py37, lint

[testenv]
commands =
Expand All @@ -11,15 +11,15 @@ passenv = SQLALCHEMY_UTILS_TEST_DB SQLALCHEMY_UTILS_TEST_POSTGRESQL_USER SQLALCH
[testenv:py27]
recreate = True

[testenv:py34]
recreate = True

[testenv:py35]
recreate = True

[testenv:py36]
recreate = True

[testenv:py37]
recreate = True

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

0 comments on commit 7a9bf16

Please sign in to comment.