-
Notifications
You must be signed in to change notification settings - Fork 132
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
feat: support SQLAlchemy 2.0, raise minimum required version to 1.4.x #1053
Changes from 69 commits
ffc491f
c7f2751
c74a0b9
001759e
bc5725f
8d5c2cc
4a355c4
0079d11
89ea48e
39b0d66
1e81318
eeffbe6
02921c2
1e9a72e
a84af4b
c09a676
6999f62
00274e0
cb34e6b
08d93b0
a377a31
2492a0c
4a5c291
c4c9976
60735ff
2612a70
5d3d850
a708987
a3a4ee6
a71e1ee
708ec59
9a9bc6b
740bfcd
75038b0
3c50f7d
455dbeb
da9f228
59f0a4e
9e8d4e7
c0016ee
5503877
b4010e1
07a1e65
1e54e77
e95aee1
b8f8f21
03fb7f7
dcc89f7
67cb7bd
f3cb2d1
19d9ce2
59408a5
1bbf9eb
5cfc280
0c4cf07
310cfa7
e82f5dd
ece7f1f
68afc39
bd38a5e
5154814
033d329
0c882b9
87a75dc
a3cacd3
34edb6d
35763e6
bcedd9c
924003e
dfbfcc3
853e5fd
b8fd194
eda4813
82c372a
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 | ||||
---|---|---|---|---|---|---|
|
@@ -369,7 +369,7 @@ def compliance(session): | |||||
session.skip("Compliance tests were not found") | ||||||
|
||||||
session.install("--pre", "grpcio") | ||||||
session.install("--pre", "--no-deps", "--upgrade", "sqlalchemy<2.0.0") | ||||||
session.install("--pre", "--no-deps", "--upgrade", "sqlalchemy>=1.4.16,<2.1") | ||||||
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.
Suggested change
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. Fixed in dfbfcc3 I don't think we need to be installing prerelease versions in compliance session at all. |
||||||
session.install( | ||||||
"mock", | ||||||
"pytest", | ||||||
|
@@ -543,7 +543,7 @@ def prerelease_deps(session): | |||||
|
||||||
prerel_deps = [ | ||||||
"protobuf", | ||||||
"sqlalchemy<2.0.0", | ||||||
"sqlalchemy>=1.4.16,<2.1", | ||||||
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.
Suggested change
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. Fixed in dfbfcc3 I don't think we need the |
||||||
# dependency of grpc | ||||||
"six", | ||||||
"googleapis-common-protos", | ||||||
|
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.
2.1 isn't out yet. Let's delete the max version, especially here in prerelease tests, so we get a heads up if we do end up being incompatible with it.