Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kvesteri/sqlalchemy-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Aug 20, 2019
2 parents 8181c45 + dcffd76 commit 57ff31c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
@@ -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
1 change: 1 addition & 0 deletions setup.py
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
5 changes: 4 additions & 1 deletion tox.ini
@@ -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 57ff31c

Please sign in to comment.