Skip to content

Commit 5be2a5d

Browse files
committed
0.1.2 - adjust dependencies
Fix: Adjust the dependency versions to make the requirements satisfy the usage in `Python=3.13`.
1 parent 0b6cdcb commit 5be2a5d

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

Changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
## CHANGELOG
66

7+
### 0.1.2 @ 12/10/2024
8+
9+
#### :wrench: Fix
10+
11+
1. Fix: Adjust the dependency versions to make the requirements satisfy the usage in `Python=3.13`.
12+
713
### 0.1.1 @ 12/10/2024
814

915
#### :wrench: Fix

docker/requirements-docker.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# To run Flask
22
flask[async]
3-
sqlalchemy[asyncio]>=2
3+
sqlalchemy[asyncio]>=2.0.31; python_version>="3.13"
4+
sqlalchemy[asyncio]>=2.0.16; python_version>="3.8" and python_version<"3.13"
5+
sqlalchemy[asyncio]>=2.0.0; python_version<"3.8"
46
werkzeug
57
typing-extensions>=4.1.0
68

79
# Flask-SQLAlchemy and Flask-SQLAlchemy-Lite
810
flask-sqlalchemy-lite; python_version>="3.9"
911
flask-sqlalchemy>=3.1.0; python_version>="3.8"
10-
flask-sqlalchemy-compat-backend-py37; python_version<="3.7"
12+
flask-sqlalchemy-compat-backend-py37; python_version<"3.8"
1113

1214
# Flask-SQLAlchemy related packages
1315
flask-migrate

flask_sqlalchemy_compat/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
__all__ = ("__version__",)
2222

23-
__version__ = "0.1.1"
23+
__version__ = "0.1.2"

requirements-backends.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
flask-sqlalchemy-lite; python_version>="3.9"
22
flask-sqlalchemy>=3.1.0; python_version>="3.8"
3-
flask-sqlalchemy-compat-backend-py37; python_version<="3.7"
3+
flask-sqlalchemy-compat-backend-py37; python_version<"3.8"

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Flask-SQLAlchemy and Flask-SQLAlchemy-Lite
22
flask-sqlalchemy-lite; python_version>="3.9"
33
flask-sqlalchemy>=3.1.0; python_version>="3.8"
4-
flask-sqlalchemy-compat-backend-py37; python_version<="3.7"
4+
flask-sqlalchemy-compat-backend-py37; python_version<"3.8"
55

66
# Flask-SQLAlchemy related packages
77
flask-migrate

requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# The basic requriements.
22
flask[async]
3-
sqlalchemy[asyncio]>=2.0.0
3+
sqlalchemy[asyncio]>=2.0.31; python_version>="3.13"
4+
sqlalchemy[asyncio]>=2.0.16; python_version>="3.8" and python_version<"3.13"
5+
sqlalchemy[asyncio]>=2.0.0; python_version<"3.8"
46
werkzeug
57
typing-extensions>=4.1.0

0 commit comments

Comments
 (0)