Commit 63f6d96
authored
fix(sqlalchemy-bigquery): Drop support for Python 3.8 and 3.9 (#16956)
This PR updates \`sqlalchemy-bigquery\` to establish Python 3.10 as the
minimum supported version, dropping support for Python 3.7, 3.8, and
3.9.
### Changes
* Configuration: Updated \`setup.py\` and \`noxfile.py\` to require
Python 3.10+ and remove references to Python 3.8 and 3.9.
* Documentation: Updated \`README.rst\` and \`CONTRIBUTING.rst\` to
reflect supported Python versions (up to 3.14).
* Constraints: Transferred lower bounds to \`constraints-3.10.txt\` and
dropped \`constraints-3.8.txt\` and \`constraints-3.9.txt\`.
* Fixes: Bumped \`pyarrow\` to \`6.0.0\` and pinned \`alembic==1.7.7\`
to fix Python 3.10 compatibility issues.
Verified successfully with 318 passing unit tests under Python 3.10!
Fixes internal issue: http://b/482126936 🦕1 parent 6544972 commit 63f6d96Copy full SHA for 63f6d96
9 files changed
+29-94Lines changed: 29 additions & 94 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- packages/sqlalchemy-bigquery
- sqlalchemy_bigquery
- testing
Expand file treeCollapse file tree
Open diff view settings
Collapse file
packages/sqlalchemy-bigquery/CONTRIBUTING.rst
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/CONTRIBUTING.rst+4-17Lines changed: 4 additions & 17 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
22 | 22 | |
23 | 23 | |
24 | 24 | |
25 | | - |
| 25 | + |
26 | 26 | |
27 | 27 | |
28 | 28 | |
| ||
148 | 148 | |
149 | 149 | |
150 | 150 | |
151 | | - |
| 151 | + |
152 | 152 | |
153 | 153 | |
154 | 154 | |
| ||
195 | 195 | |
196 | 196 | |
197 | 197 | |
198 | | - |
| 198 | + |
199 | 199 | |
200 | 200 | |
201 | 201 | |
202 | | - |
| 202 | + |
203 | 203 | |
204 | 204 | |
205 | 205 | |
| ||
221 | 221 | |
222 | 222 | |
223 | 223 | |
224 | | - |
225 | 224 | |
226 | 225 | |
227 | 226 | |
228 | 227 | |
229 | 228 | |
230 | 229 | |
231 | | - |
232 | 230 | |
233 | 231 | |
234 | 232 | |
| ||
241 | 239 | |
242 | 240 | |
243 | 241 | |
244 | | - |
245 | | - |
246 | | - |
247 | | - |
248 | | - |
249 | | - |
250 | | - |
251 | | - |
252 | | - |
253 | | - |
254 | | - |
255 | 242 | |
256 | 243 | |
257 | 244 | |
|
Collapse file
packages/sqlalchemy-bigquery/README.rst
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/README.rst+2-2Lines changed: 2 additions & 2 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
51 | 51 | |
52 | 52 | |
53 | 53 | |
54 | | - |
| 54 | + |
55 | 55 | |
56 | 56 | |
57 | 57 | |
58 | | - |
| 58 | + |
59 | 59 | |
60 | 60 | |
61 | 61 | |
|
Collapse file
packages/sqlalchemy-bigquery/noxfile.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/noxfile.py-5Lines changed: 0 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
45 | 45 | |
46 | 46 | |
47 | 47 | |
48 | | - |
49 | | - |
50 | 48 | |
51 | 49 | |
52 | 50 | |
53 | 51 | |
54 | 52 | |
55 | 53 | |
56 | 54 | |
57 | | - |
58 | 55 | |
59 | 56 | |
60 | 57 | |
| ||
276 | 273 | |
277 | 274 | |
278 | 275 | |
279 | | - |
280 | | - |
281 | 276 | |
282 | 277 | |
283 | 278 | |
|
Collapse file
packages/sqlalchemy-bigquery/setup.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/setup.py+2-4Lines changed: 2 additions & 4 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
64 | 64 | |
65 | 65 | |
66 | 66 | |
67 | | - |
| 67 | + |
68 | 68 | |
69 | 69 | |
70 | 70 | |
| ||
101 | 101 | |
102 | 102 | |
103 | 103 | |
104 | | - |
105 | | - |
106 | 104 | |
107 | 105 | |
108 | 106 | |
| ||
123 | 121 | |
124 | 122 | |
125 | 123 | |
126 | | - |
| 124 | + |
127 | 125 | |
128 | 126 | |
129 | 127 | |
|
Collapse file
packages/sqlalchemy-bigquery/sqlalchemy_bigquery/__init__.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/sqlalchemy_bigquery/__init__.py+6-8Lines changed: 6 additions & 8 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
22 | 22 | |
23 | 23 | |
24 | 24 | |
25 | | - |
26 | 25 | |
27 | 26 | |
28 | 27 | |
| ||
44 | 43 | |
45 | 44 | |
46 | 45 | |
| 46 | + |
47 | 47 | |
48 | | - |
49 | | - |
50 | | - |
| 48 | + |
51 | 49 | |
52 | | - |
| 50 | + |
53 | 51 | |
54 | | - |
55 | | - |
56 | | - |
| 52 | + |
| 53 | + |
| 54 | + |
57 | 55 | |
58 | 56 | |
59 | 57 | |
|
Collapse file
packages/sqlalchemy-bigquery/sqlalchemy_bigquery/_versions_helpers.py
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/sqlalchemy_bigquery/_versions_helpers.py-32Lines changed: 0 additions & 32 deletions
This file was deleted.
Collapse file
packages/sqlalchemy-bigquery/testing/constraints-3.10.txt
Copy file name to clipboard+15Lines changed: 15 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
Collapse file
packages/sqlalchemy-bigquery/testing/constraints-3.8.txt
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/testing/constraints-3.8.txt-13Lines changed: 0 additions & 13 deletions
This file was deleted.
Collapse file
packages/sqlalchemy-bigquery/testing/constraints-3.9.txt
Copy file name to clipboardExpand all lines: packages/sqlalchemy-bigquery/testing/constraints-3.9.txt-13Lines changed: 0 additions & 13 deletions
This file was deleted.
0 commit comments