This repository was archived by the owner on Aug 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## 0.4.3 (March 26th, 2021)
8+
9+ ### Fixed
10+
11+ * Pin SQLAlchemy to 1.13.* (#314 )
12+
713## 0.4.2 (March 14th, 2021)
814
915### Fixed
@@ -34,4 +40,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3440* Fix SQLAlchemy DDL statements (#226 )
3541* Make fetch_val call fetch_one for type conversion (#246 )
3642* Unquote username and password in DatabaseURL (#248 )
37-
Original file line number Diff line number Diff line change 11from databases .core import Database , DatabaseURL
22
3- __version__ = "0.4.2 "
3+ __version__ = "0.4.3 "
44__all__ = ["Database" , "DatabaseURL" ]
Original file line number Diff line number Diff line change 11# Notes...
22# The JSONField tests require sqlalchemy 1.3+. Other cases work at lower versions.
33# The aiocontextvars package is only required as a backport for Python 3.6.
4- sqlalchemy >= 1.3.0
5- aiocontextvars ;python_version < "3.7"
4+ -e .
65
76# Async database drivers
87aiomysql
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def get_packages(package):
4848 packages = get_packages ("databases" ),
4949 package_data = {"databases" : ["py.typed" ]},
5050 data_files = [("" , ["LICENSE.md" ])],
51- install_requires = [" sqlalchemy" , 'aiocontextvars;python_version<"3.7"' ],
51+ install_requires = [' sqlalchemy<1.4' , 'aiocontextvars;python_version<"3.7"' ],
5252 extras_require = {
5353 "postgresql" : ["asyncpg" ],
5454 "mysql" : ["aiomysql" ],
You can’t perform that action at this time.
0 commit comments