We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c13a5e7 commit ef7fa65Copy full SHA for ef7fa65
1 file changed
.github/workflows/import-profiler.yml
@@ -53,6 +53,13 @@ jobs:
53
packages_to_test=""
54
for pkg in $modified_packages; do
55
if [ -d "$pkg" ]; then
56
+ # Skip packages/sqlalchemy-bigquery because python_requires restricts to < 3.15
57
+ # TODO: Re-enable once Python 3.15 is supported (see issue #17786)
58
+ if [ "$pkg" = "packages/sqlalchemy-bigquery" ]; then
59
+ echo "Skipping packages/sqlalchemy-bigquery: python_requires limits to < 3.15 (see issue #17786)"
60
+ continue
61
+ fi
62
+
63
if [ $((idx % TOTAL_SHARDS)) -eq SHARD_INDEX ]; then
64
packages_to_test="$packages_to_test $pkg"
65
fi
0 commit comments