File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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/
Original file line number Diff line number Diff line change 11prettytable
22ipython
3- sqlalchemy
3+ sqlalchemy >= 2.0
44sqlparse
55six
66ipython-genutils
Original file line number Diff line number Diff line change 1313install_requires = [
1414 "prettytable" ,
1515 "ipython" ,
16- "sqlalchemy" ,
16+ "sqlalchemy>=2.0 " ,
1717 "sqlparse" ,
1818 "six" ,
1919 "ipython-genutils" ,
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" ,
You can’t perform that action at this time.
0 commit comments