Commit 494abcd
authored
feat(bigquery): drop Python 3.7-3.9 support and regenerate (#17187)
Updates post processing to account for dropping support for Python 3.7,
3.8, 3.9 and the impacts that has on using 3.10 for lower bounds
testing.
### Changes
* Resolved Build & Environment Issues: Bumped `pandas`, `pyarrow`, and
`opentelemetry` constraints to versions providing native Python 3.10
wheels and avoiding `pkg_resources` failures.
* Refactored EOL Checks: Standardised the warning logic using
sys.version_info < (3, 10) directly.
* Deleted Redundant Helpers: Cleanly removed the custom helper
`extract_runtime_version()` and unused sys and _versions_helpers
imports.
* Aligned Protobuf: Standardised protobuf==4.25.8 to align with the
GAPIC templates and the rest of the library families.
* Updated post-processing scripts to ensure the above updates pers
🦕1 parent 03a1333 commit 494abcdCopy full SHA for 494abcd
11 files changed
+41-74Lines changed: 41 additions & 74 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- packages/google-cloud-bigquery
- google/cloud/bigquery
- testing
Expand file treeCollapse file tree
Open diff view settings
Collapse file
-1Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
510 | 510 | |
511 | 511 | |
512 | 512 | |
513 | | - |
514 | 513 | |
515 | 514 | |
516 | 515 | |
|
Collapse file
packages/google-cloud-bigquery/.repo-metadata.json
Copy file name to clipboard-5Lines changed: 0 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
1 | 1 | |
2 | | - |
3 | | - |
4 | 2 | |
5 | 3 | |
6 | 4 | |
7 | | - |
8 | 5 | |
9 | 6 | |
10 | 7 | |
11 | | - |
12 | | - |
13 | 8 | |
14 | 9 | |
15 | 10 | |
Collapse file
packages/google-cloud-bigquery/README.rst
Copy file name to clipboardExpand all lines: packages/google-cloud-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 |
|---|---|---|
| ||
52 | 52 | |
53 | 53 | |
54 | 54 | |
55 | | - |
| 55 | + |
56 | 56 | |
57 | 57 | |
58 | 58 | |
59 | | - |
| 59 | + |
60 | 60 | |
61 | 61 | |
62 | 62 | |
|
Collapse file
packages/google-cloud-bigquery/google/cloud/bigquery/__init__.py
Copy file name to clipboardExpand all lines: packages/google-cloud-bigquery/google/cloud/bigquery/__init__.py+4-7Lines changed: 4 additions & 7 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
27 | 27 | |
28 | 28 | |
29 | 29 | |
| 30 | + |
30 | 31 | |
31 | 32 | |
32 | 33 | |
| ||
116 | 117 | |
117 | 118 | |
118 | 119 | |
119 | | - |
120 | 120 | |
121 | 121 | |
122 | 122 | |
123 | 123 | |
124 | 124 | |
125 | 125 | |
126 | | - |
127 | | - |
128 | | - |
| 126 | + |
129 | 127 | |
130 | | - |
131 | | - |
132 | | - |
| 128 | + |
| 129 | + |
133 | 130 | |
134 | 131 | |
135 | 132 | |
|
Collapse file
packages/google-cloud-bigquery/google/cloud/bigquery/_versions_helpers.py
Copy file name to clipboardExpand all lines: packages/google-cloud-bigquery/google/cloud/bigquery/_versions_helpers.py-15Lines changed: 0 additions & 15 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
11 | 11 | |
12 | 12 | |
13 | 13 | |
14 | | - |
15 | 14 | |
16 | 15 | |
17 | | - |
18 | 16 | |
19 | 17 | |
20 | 18 | |
| ||
249 | 247 | |
250 | 248 | |
251 | 249 | |
252 | | - |
253 | | - |
254 | | - |
255 | | - |
256 | | - |
257 | | - |
258 | | - |
259 | | - |
260 | | - |
261 | | - |
262 | | - |
263 | | - |
264 | | - |
Collapse file
packages/google-cloud-bigquery/mypy.ini
Copy file name to clipboard+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
1 | 1 | |
2 | | - |
| 2 | + |
3 | 3 | |
Collapse file
packages/google-cloud-bigquery/noxfile.py
Copy file name to clipboardExpand all lines: packages/google-cloud-bigquery/noxfile.py+5-4Lines changed: 5 additions & 4 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
23 | 23 | |
24 | 24 | |
25 | 25 | |
26 | | - |
| 26 | + |
27 | 27 | |
28 | 28 | |
29 | 29 | |
| ||
36 | 36 | |
37 | 37 | |
38 | 38 | |
39 | | - |
| 39 | + |
| 40 | + |
40 | 41 | |
41 | 42 | |
42 | 43 | |
| ||
170 | 171 | |
171 | 172 | |
172 | 173 | |
173 | | - |
| 174 | + |
174 | 175 | |
175 | 176 | |
176 | 177 | |
177 | 178 | |
178 | | - |
| 179 | + |
179 | 180 | |
180 | 181 | |
181 | 182 | |
|
Collapse file
packages/google-cloud-bigquery/pyproject.toml
Copy file name to clipboardExpand all lines: packages/google-cloud-bigquery/pyproject.toml+2-5Lines changed: 2 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
20 | 20 | |
21 | 21 | |
22 | 22 | |
23 | | - |
| 23 | + |
24 | 24 | |
25 | 25 | |
26 | 26 | |
| ||
32 | 32 | |
33 | 33 | |
34 | 34 | |
35 | | - |
36 | | - |
37 | 35 | |
38 | 36 | |
39 | 37 | |
| ||
86 | 84 | |
87 | 85 | |
88 | 86 | |
89 | | - |
90 | | - |
| 87 | + |
91 | 88 | |
92 | 89 | |
93 | 90 | |
|
Collapse file
packages/google-cloud-bigquery/setup.cfg
Copy file name to clipboardExpand all lines: packages/google-cloud-bigquery/setup.cfg+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
15 | 15 | |
16 | 16 | |
17 | 17 | |
18 | | - |
| 18 | + |
19 | 19 | |
20 | 20 | |
21 | 21 | |
|
Collapse file
packages/google-cloud-bigquery/testing/constraints-3.10.txt
Copy file name to clipboard+26Lines changed: 26 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
1 | 9 | |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | + |
0 commit comments