Skip to content

Commit 464f237

Browse files
committedJan 29, 2023
fixated SQLAlchemy to version 1.4.46
1 parent 5c06978 commit 464f237

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup databases
2929
run: |
3030
pip install .
31-
pip install mysqlclient psycopg2-binary
31+
pip install mysqlclient psycopg2-binary SQLAlchemy==1.4.46
3232
3333
- name: Run tests
3434
run: python tests/sql.py

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.*
22
!/.github/
33
!.gitignore
4+
build/
45
*.db
56
*.egg-info/
67
*.pyc

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Topic :: Software Development :: Libraries :: Python Modules"
1111
],
1212
description="CS50 library for Python",
13-
install_requires=["Flask>=1.0", "SQLAlchemy", "sqlparse", "termcolor", "wheel"],
13+
install_requires=["Flask>=1.0", "SQLAlchemy==1.4.46", "sqlparse", "termcolor", "wheel"],
1414
keywords="cs50",
1515
license="GPLv3",
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)
Please sign in to comment.