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.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
+ ## 0.4.3 (March 26th, 2021)
8
+
9
+ ### Fixed
10
+
11
+ * Pin SQLAlchemy to 1.13.* (#314 )
12
+
7
13
## 0.4.2 (March 14th, 2021)
8
14
9
15
### Fixed
@@ -34,4 +40,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
34
40
* Fix SQLAlchemy DDL statements (#226 )
35
41
* Make fetch_val call fetch_one for type conversion (#246 )
36
42
* Unquote username and password in DatabaseURL (#248 )
37
-
Original file line number Diff line number Diff line change 1
1
from databases .core import Database , DatabaseURL
2
2
3
- __version__ = "0.4.2 "
3
+ __version__ = "0.4.3 "
4
4
__all__ = ["Database" , "DatabaseURL" ]
Original file line number Diff line number Diff line change 1
1
# Notes...
2
2
# The JSONField tests require sqlalchemy 1.3+. Other cases work at lower versions.
3
3
# 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 .
6
5
7
6
# Async database drivers
8
7
aiomysql
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def get_packages(package):
48
48
packages = get_packages ("databases" ),
49
49
package_data = {"databases" : ["py.typed" ]},
50
50
data_files = [("" , ["LICENSE.md" ])],
51
- install_requires = [" sqlalchemy" , 'aiocontextvars;python_version<"3.7"' ],
51
+ install_requires = [' sqlalchemy<1.4' , 'aiocontextvars;python_version<"3.7"' ],
52
52
extras_require = {
53
53
"postgresql" : ["asyncpg" ],
54
54
"mysql" : ["aiomysql" ],
You can’t perform that action at this time.
0 commit comments