Skip to content

Commit ef7fa65

Browse files
committed
fix(ci): explicitly skip sqlalchemy-bigquery in import-profiler
1 parent c13a5e7 commit ef7fa65

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/import-profiler.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ jobs:
5353
packages_to_test=""
5454
for pkg in $modified_packages; do
5555
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+
5663
if [ $((idx % TOTAL_SHARDS)) -eq SHARD_INDEX ]; then
5764
packages_to_test="$packages_to_test $pkg"
5865
fi

0 commit comments

Comments
 (0)