-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency sqlalchemy to v1.3.13 (#2778)
* chore(deps): update dependency sqlalchemy to v1.3.13 * Comment out requirement, add explanation for user * Add explanation of requirements * specify pg8000 version for py2 Co-authored-by: Leah E. Cole <6719667+leahecole@users.noreply.github.com>
- Loading branch information
1 parent
2b3daa3
commit d26b380
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
flask==1.1.1 | ||
psycopg2==2.8.4 | ||
psycopg2-binary==2.8.4 | ||
# psycopg2==2.8.4 | ||
psycopg2-binary==2.8.4 # you will need either the binary or the regular - for more info see http://initd.org/psycopg/docs/install.html | ||
PyMySQL==0.9.3 | ||
SQLAlchemy==1.3.12 | ||
SQLAlchemy==1.3.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Flask==1.1.1 | ||
SQLAlchemy==1.3.12 | ||
SQLAlchemy==1.3.13 | ||
PyMySQL==0.9.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Flask==1.1.1 | ||
SQLAlchemy==1.3.12 | ||
pg8000==1.13.2 | ||
SQLAlchemy==1.3.13 | ||
pg8000==1.13.2; python_version > '3.0' | ||
pg8000==1.12.5; python_version < '3.0' |