This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 6e501a19151 [v3-0-test] Exclude libcst 1.8.0 (no wheels <3.12)
(#51120) (#51126)
6e501a19151 is described below
commit 6e501a19151a6330c55bbccc83b7fddbef7f3d94
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 2 11:08:54 2025 +0200
[v3-0-test] Exclude libcst 1.8.0 (no wheels <3.12) (#51120) (#51126)
* Exclude libcst 1.8.0 (no wheels <3.12)
* Exclude libcst 1.8.0 (no wheels <3.12)
(cherry picked from commit 56343ffca684afbc973876b2cb37672b3e8222ee)
Co-authored-by: Amogh Desai <[email protected]>
---
.pre-commit-config.yaml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index ddfa6633102..01a585c19c4 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -225,7 +225,8 @@ repos:
language: python
entry: ./scripts/ci/pre_commit/check_deferrable_default.py
pass_filenames: false
- additional_dependencies: ['libcst>=1.1.0']
+ # libcst doesn't have source wheels for all PY except PY3.12,
excluding it
+ additional_dependencies: ['libcst>=1.1.0,!=1.8.0']
files: ^(providers/.*/)?airflow/.*/(sensors|operators)/.*\.py$
- repo: https://github.com/asottile/blacken-docs
rev: 1.19.1