-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make FTM cross-compatible with SQLAlchemy 1.4 and 2+ #1181
Changes from 1 commit
4874aa8
9cf5829
b3753c9
f5efc75
5008062
33c53e1
0c6402d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
"requests >= 2.21.0, < 3.0.0", | ||
"python-levenshtein >= 0.12.0, < 1.0.0", | ||
"normality >= 2.4.0, < 3.0.0", | ||
"sqlalchemy >= 1.2.0, < 3.0.0", | ||
"sqlalchemy >= 1.3.2, < 3.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn’t this require at least 1.4 (which is the first version that supports the 2.0 API)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't increase it yet to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Leaving it at
Whereas with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I updated the minimum |
||
"countrynames >= 1.13.0, < 2.0.0", | ||
"languagecodes >= 1.1.0, < 2.0.0", | ||
"prefixdate >= 0.4.0, < 1.0.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a particular reason why the version constraints for
normality
,banal
,click
had to change? I don’t mind the version bumps being included in this PR, I was just wondering about the reason behind it…There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed
click
, that was a mistake (not a terrible one, it current constraint just crappedclick
below the latest version).banal
andnormality
are libs we created. I bumped the minimum version to the latest version. Both of these were giving me dependency clashes withmemorious
.