File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ install:
2626 - bin/buildout -n -c base.cfg
2727env :
2828 - SA_VERSION=1.1.15
29- - SA_VERSION=1.2.0
29+ - SA_VERSION=1.2.18
3030matrix :
3131 allow_failures :
3232 - python : nightly
Original file line number Diff line number Diff 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
1111configuration.
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.
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 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
1515commands =
You can’t perform that action at this time.
0 commit comments