Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
env:
SQLALCHEMY_DATABASE_URI:
postgresql+psycopg2://pguser:pguserpassword@127.0.0.1:15432/app
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.13"]
env:
SQLALCHEMY_DATABASE_URI: |
mysql+mysqldb://mysqluser:mysqluserpassword@127.0.0.1:13306/app?charset=utf8mb4&binary_prefix=true
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.13"]
env:
SQLALCHEMY_DATABASE_URI: |
mssql+pyodbc://sa:Password_123@localhost:11433/master?driver=FreeTDS
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ six==1.16.0
# via
# prison
# python-dateutil
sqlalchemy==2.0.30
sqlalchemy==2.0.44
# via
# flask-appbuilder
# flask-sqlalchemy
Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ packaging==23.2
# limits
# marshmallow
# sphinx
pillow==10.2.0
pillow==10.4.0
# via blockdiag
prison==0.2.1
# via
Expand Down
8 changes: 4 additions & 4 deletions requirements/extra.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authlib==1.2.1
# via -r requirements/extra.in
certifi==2024.2.2
# via requests
cffi==1.16.0
cffi==1.17.0
# via cryptography
charset-normalizer==2.0.12
# via requests
Expand All @@ -22,9 +22,9 @@ jmespath==1.0.1
# via -r requirements/extra.in
mysqlclient==2.0.1
# via -r requirements/extra.in
pillow==10.2.0
pillow==10.4.0
# via -r requirements/extra.in
psycopg2-binary==2.9.6
psycopg2-binary==2.9.10
# via -r requirements/extra.in
pyasn1==0.5.1
# via
Expand All @@ -34,7 +34,7 @@ pyasn1-modules==0.3.0
# via python-ldap
pycparser==2.21
# via cffi
pyodbc==5.0.1
pyodbc==5.2.0
# via -r requirements/extra.in
python-ldap==3.4.3
# via -r requirements/extra.in
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def desc():
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires="~=3.7",
Expand Down