Skip to content

Commit f32b826

Browse files
committed
restrict SQLAlchemy version to >= 1.0 and < 1.3
1 parent a84863a commit f32b826

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install:
2626
- bin/buildout -n -c base.cfg
2727
env:
2828
- SA_VERSION=1.1.15
29-
- SA_VERSION=1.2.0
29+
- SA_VERSION=1.2.18
3030
matrix:
3131
allow_failures:
3232
- python: nightly

docs/sqlalchemy.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ The CrateDB Python client library provides support for SQLAlchemy. A CrateDB
1010
`dialect`_ is registered at installation time and can be used without further
1111
configuration.
1212

13+
The CrateDB Python client library works with SQLAlchemy versions ``1.0``,
14+
``1.1`` and ``1.2``.
15+
1316
.. NOTE::
1417

1518
This page documents the CrateDB SQLAlchemy dialect.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def read(path):
6969
extras_require=dict(
7070
test=['zope.testing',
7171
'zc.customdoctests>=1.0.1'],
72-
sqlalchemy=['sqlalchemy>=1.0.0']
72+
sqlalchemy=['sqlalchemy>=1.0,<1.3']
7373
),
7474
python_requires='>=3.4',
7575
install_requires=requirements,

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ deps =
77
zope.testrunner
88
zope.testing
99
zc.customdoctests
10-
sa_1_0: sqlalchemy>=1.0.0,<1.1.0
11-
sa_1_1: sqlalchemy>=1.1.0,<1.2.0
12-
sa_1_2: sqlalchemy>=1.2.0
10+
sa_1_0: sqlalchemy>=1.0,<1.1
11+
sa_1_1: sqlalchemy>=1.1,<1.2
12+
sa_1_2: sqlalchemy>=1.2,<1.3
1313
mock
1414
urllib3
1515
commands =

0 commit comments

Comments
 (0)