Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions dev/breeze/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ dependencies = [
"black>=26.1.0",
"click>=8.3.0",
"filelock>=3.13.0",
"flit>=3.12.0",
"flit-core>=3.12.0",
# Capped below 4 because `flit build` has no PEP 517 isolation: the installed flit_core is
# what builds every provider distribution, so the `flit_core==` pin they declare never
# applies. Adopting the 4.x backend is tracked at
# https://github.com/apache/airflow/issues/71121
"flit>=3.12.0,<4",
"flit-core>=3.12.0,<4",
"google-api-python-client>=2.142.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def build_provider_distribution(
build_backend = provider_info.get("build-system", "flit_core")
build_env = {"SOURCE_DATE_EPOCH": str(get_provider_details(provider_id).source_date_epoch)}
if build_backend == "flit_core":
command: list[str] = [sys.executable, "-m", "flit", "build", "--no-setup-py", "--use-vcs"]
command: list[str] = [sys.executable, "-m", "flit", "build", "--use-vcs"]
console_print(
"[warning]Workaround wheel-only package bug in flit by building both and removing sdist."
)
Expand Down
4 changes: 2 additions & 2 deletions dev/breeze/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading