Skip to content

Commit 678f7bf

Browse files
committed
Updated supported Python and SQLAlchemy versions
1 parent dffc5be commit 678f7bf

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

.travis.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ language: python
55
python:
66
- "2.7"
77
- "3.4"
8-
- "pypy"
8+
- "3.8"
99

1010
env:
11-
- SQLA_VERSION=0.7
12-
- SQLA_VERSION=0.8
13-
- SQLA_VERSION=0.9
1411
- SQLA_VERSION=1.0
1512
- SQLA_VERSION=1.1
13+
- SQLA_VERSION=1.2
14+
- SQLA_VERSION=1.3
1615

1716
install:
1817
- pip install tox-travis

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ To install `SQLConstruct`, simply:
263263
264264
$ pip install sqlconstruct
265265
266-
Tested `Python` versions: 2.7, 3.4, PyPy.
266+
Tested `Python` versions: 2.7, 3.4, 3.8.
267267

268-
Tested `SQLAlchemy` versions: 0.7, 0.8, 0.9, 1.0, 1.1.
268+
Tested `SQLAlchemy` versions: 1.0, 1.1, 1.2, 1.3.
269269

270270
Examples above are using `SQLAlchemy` >= 0.9, if you are using older versions,
271271
you will have to do next changes in your project configuration:

tox.ini

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
[tox]
2-
envlist = py{27,34,py}-sqla{07,08,09,10,11}
2+
envlist = py{27,34,38}-sqla{10,11,12,13}
33

44
[testenv]
55
commands =
66
python -m unittest tests
77
deps =
8-
py{27,py}: mock
9-
sqla07: sqlalchemy>=0.7,<0.8
10-
sqla08: sqlalchemy>=0.8,<0.9
11-
sqla09: sqlalchemy>=0.9,<1.0
8+
py27: mock
129
sqla10: sqlalchemy>=1.0,<1.1
1310
sqla11: sqlalchemy>=1.1,<1.2
11+
sqla12: sqlalchemy>=1.2,<1.3
12+
sqla13: sqlalchemy>=1.3,<1.4
1413

1514
[travis]
1615
python =
1716
2.7: py27
1817
3.4: py34
19-
pypy: pypy
18+
3.8: py38
2019

2120
[travis:env]
2221
SQLA_VERSION =
23-
0.7: sqla07
24-
0.8: sqla08
25-
0.9: sqla09
2622
1.0: sqla10
2723
1.1: sqla11
24+
1.2: sqla12
25+
1.3: sqla13

0 commit comments

Comments
 (0)