File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -324,8 +324,6 @@ def prerelease(session):
324
324
"--pre" ,
325
325
"--upgrade" ,
326
326
"google-api-core" ,
327
- "google-cloud-bigquery" ,
328
- "google-cloud-bigquery-storage" ,
329
327
"google-cloud-core" ,
330
328
"google-resumable-media" ,
331
329
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
@@ -344,6 +342,14 @@ def prerelease(session):
344
342
"pytest-cov" ,
345
343
)
346
344
345
+ # Install python-bigquery and python-bigquery-storage from main to detect
346
+ # any potential breaking changes. For context, see:
347
+ # https://github.com/googleapis/python-bigquery-pandas/issues/854
348
+ session .install (
349
+ "https://github.com/googleapis/python-bigquery/archive/main.zip" ,
350
+ "https://github.com/googleapis/python-bigquery-storage/archive/main.zip" ,
351
+ )
352
+
347
353
# Because we test minimum dependency versions on the minimum Python
348
354
# version, the first version we test with in the unit tests sessions has a
349
355
# constraints file containing all dependencies and extras.
You can’t perform that action at this time.
0 commit comments