Commit f5b392e
authored
fix(sqlalchemy-spanner): Drop support for Python 3.8 and 3.9 (#16913)
This PR updates `sqlalchemy-spanner` to establish Python 3.10 as the
minimum supported version, dropping support for Python 3.9 and below.
### Changes
* Configuration: Updated `setup.py` and `noxfile.py` to require Python
3.10+ and remove references to Python 3.7, 3.8, and 3.9.
* Cleanup: Removed dead code in `noxfile.py` that was skipping Python
3.7.
### Blocking
This PR is blocked by PR #169101 parent 6698861 commit f5b392eCopy full SHA for f5b392e
2 files changed
+5-7Lines changed: 5 additions & 7 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- packages/sqlalchemy-spanner
Expand file treeCollapse file tree
Open diff view settings
Collapse file
packages/sqlalchemy-spanner/noxfile.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-spanner/noxfile.py+4-5Lines changed: 4 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
80 | 80 | |
81 | 81 | |
82 | 82 | |
83 | | - |
| 83 | + |
84 | 84 | |
85 | | - |
86 | 85 | |
87 | | - |
| 86 | + |
88 | 87 | |
89 | 88 | |
90 | 89 | |
| ||
180 | 179 | |
181 | 180 | |
182 | 181 | |
| 182 | + |
| 183 | + |
183 | 184 | |
184 | 185 | |
185 | 186 | |
| ||
318 | 319 | |
319 | 320 | |
320 | 321 | |
321 | | - |
322 | | - |
323 | 322 | |
324 | 323 | |
325 | 324 | |
|
Collapse file
packages/sqlalchemy-spanner/setup.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-spanner/setup.py+1-2Lines changed: 1 addition & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
58 | 58 | |
59 | 59 | |
60 | 60 | |
| 61 | + |
61 | 62 | |
62 | 63 | |
63 | 64 | |
64 | | - |
65 | | - |
66 | 65 | |
67 | 66 | |
68 | 67 | |
|
0 commit comments