Skip to content

Commit

Permalink
Version 0.4.3 (#314)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
tomchristie committed Mar 26, 2021
1 parent 2194ffb commit 88a8015
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 0.4.3 (March 26th, 2021)

### Fixed

* Pin SQLAlchemy to 1.13.* (#314)

## 0.4.2 (March 14th, 2021)

### Fixed
Expand Down Expand Up @@ -34,4 +40,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Fix SQLAlchemy DDL statements (#226)
* Make fetch_val call fetch_one for type conversion (#246)
* Unquote username and password in DatabaseURL (#248)

2 changes: 1 addition & 1 deletion databases/__init__.py
@@ -1,4 +1,4 @@
from databases.core import Database, DatabaseURL

__version__ = "0.4.2"
__version__ = "0.4.3"
__all__ = ["Database", "DatabaseURL"]
3 changes: 1 addition & 2 deletions requirements.txt
@@ -1,8 +1,7 @@
# Notes...
# The JSONField tests require sqlalchemy 1.3+. Other cases work at lower versions.
# The aiocontextvars package is only required as a backport for Python 3.6.
sqlalchemy>=1.3.0
aiocontextvars;python_version<"3.7"
-e .

# Async database drivers
aiomysql
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -48,7 +48,7 @@ def get_packages(package):
packages=get_packages("databases"),
package_data={"databases": ["py.typed"]},
data_files=[("", ["LICENSE.md"])],
install_requires=["sqlalchemy", 'aiocontextvars;python_version<"3.7"'],
install_requires=['sqlalchemy<1.4', 'aiocontextvars;python_version<"3.7"'],
extras_require={
"postgresql": ["asyncpg"],
"mysql": ["aiomysql"],
Expand Down

0 comments on commit 88a8015

Please sign in to comment.