Skip to content

Commit f90c49b

Browse files
committed
chore: filters out fiona
1 parent 920be87 commit f90c49b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/bigframes/noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,13 @@ def core_deps_from_source(session, protobuf_implementation):
966966
constraints_text = constraints_file.read()
967967

968968
# Ignore leading whitespace and comment lines.
969+
# Fiona fails to build on GitHub CI because gdal-config is missing and no Python 3.14 wheels are available.
969970
constraints_deps = [
970971
match.group(1)
971972
for match in re.finditer(
972973
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE
973974
)
975+
if match.group(1) != "fiona"
974976
]
975977

976978
# Install dependencies specified in `testing/constraints-X.txt`.

0 commit comments

Comments
 (0)