-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update check for existing table (#71)
* Update check for existing table A change in sqlalchemy 1.4 changed how to check whether a table exists. This enables the new check and the old check, tested on sqlalchemy 1.3 and 1.4. Co-authored-by: Jordi Aranda <jarandaf@users.noreply.github.com> * Fix mypy errors Newer versions of mypy complain when named tuple is passed the wrong name. Also added types-cachetools as a test dependency to ensure mypy checks pass. * version bump Co-authored-by: Jordi Aranda <jarandaf@users.noreply.github.com>
- Loading branch information
1 parent
250b18d
commit be4f805
Showing
4 changed files
with
16 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 |
---|---|---|
|
@@ -52,6 +52,7 @@ test = [ | |
"black>=19.3b0", | ||
"flake8>=3.7", | ||
"mypy", | ||
"types-cachetools", | ||
] | ||
doc = [ | ||
"sphinx>=2.0,<3.0", | ||
|
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
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
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