Skip to content

Commit

Permalink
Pin SQLAlchemy 1.4.41 (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
aminalaee committed Nov 7, 2022
1 parent 385f3fd commit ff8e8a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -47,7 +47,7 @@ def get_packages(package):
author_email="tom@tomchristie.com",
packages=get_packages("databases"),
package_data={"databases": ["py.typed"]},
install_requires=["sqlalchemy>=1.4,<1.5"],
install_requires=["sqlalchemy>=1.4,<=1.4.41"],
extras_require={
"postgresql": ["asyncpg"],
"asyncpg": ["asyncpg"],
Expand Down

3 comments on commit ff8e8a2

@mgorny
Copy link

@mgorny mgorny commented on ff8e8a2 Dec 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the rationale? Forcing an old sqlalchemy version on projects is not exactly the most friendly thing to do.

@zanieb
Copy link
Contributor

@zanieb zanieb commented on ff8e8a2 Dec 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mgorny
Copy link

@mgorny mgorny commented on ff8e8a2 Dec 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, sorry. For some reason, I didn't notice the bug reference in commit message.

Please sign in to comment.