We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 920be87 commit f90c49bCopy full SHA for f90c49b
packages/bigframes/noxfile.py
@@ -966,11 +966,13 @@ def core_deps_from_source(session, protobuf_implementation):
966
constraints_text = constraints_file.read()
967
968
# 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.
970
constraints_deps = [
971
match.group(1)
972
for match in re.finditer(
973
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE
974
)
975
+ if match.group(1) != "fiona"
976
]
977
978
# Install dependencies specified in `testing/constraints-X.txt`.
0 commit comments