Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 88a8015

Browse files
Version 0.4.3 (#314)
* Version 0.4.3 * Update CHANGELOG.md * Update setup.py * requirements.txt should use setup.py for main package dependancies * Pin to sqlalchemy<1.4
1 parent 2194ffb commit 88a8015

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The 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-

databases/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from databases.core import Database, DatabaseURL
22

3-
__version__ = "0.4.2"
3+
__version__ = "0.4.3"
44
__all__ = ["Database", "DatabaseURL"]

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
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
87
aiomysql

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"],

0 commit comments

Comments
 (0)