Skip to content

Commit 25ef08c

Browse files
Explicitly require SQLAlchemy 2.0
1 parent f394d92 commit 25ef08c

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

NEWS.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,10 @@ Deleted Plugin import left behind in 0.2.2
170170

171171
* Fixed .rst file location in MANIFEST.in
172172
* Parse SQL comments in first line
173-
* Bugfixes for DSN, `--close`, others
173+
* Bugfixes for DSN, `--close`, others
174+
175+
0.5.0
176+
~~~~~
177+
178+
* Use SQLAlchemy 2.0
179+
* Drop undocumented support for dict-style access to raw row instances

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@ Credits
426426
- vkk800 for ``--file``
427427
- Jens Albrecht for MySQL DatabaseError bugfix
428428
- meihkv for connection-closing bugfix
429+
- Abhinav C for SQLAlchemy 2.0 compatibility
429430

430431
.. _Distribute: http://pypi.python.org/pypi/distribute
431432
.. _Buildout: http://www.buildout.org/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
prettytable
22
ipython
3-
sqlalchemy
3+
sqlalchemy>=2.0
44
sqlparse
55
six
66
ipython-genutils

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
install_requires = [
1414
"prettytable",
1515
"ipython",
16-
"sqlalchemy",
16+
"sqlalchemy>=2.0",
1717
"sqlparse",
1818
"six",
1919
"ipython-genutils",
@@ -33,7 +33,6 @@
3333
"Topic :: Database",
3434
"Topic :: Database :: Front-Ends",
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 2",
3736
],
3837
keywords="database ipython postgresql mysql",
3938
author="Catherine Devlin",

0 commit comments

Comments
 (0)