This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v2-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-10-test by this push:
new 14cd75a517 Pin universal-pathlib to 0.2.2 as 0.2.3 generates static
code check errors (#41715) (#41820)
14cd75a517 is described below
commit 14cd75a5176c981006a9b10cd786e250ea1e2a3b
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Aug 28 13:21:07 2024 +0200
Pin universal-pathlib to 0.2.2 as 0.2.3 generates static code check errors
(#41715) (#41820)
(cherry picked from commit 1c53961fd4cc1f9085680bf22fbe7f57e29948d4)
Co-authored-by: Jens Scheffler <[email protected]>
---
hatch_build.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hatch_build.py b/hatch_build.py
index 110ebdb772..2f29d36866 100644
--- a/hatch_build.py
+++ b/hatch_build.py
@@ -498,7 +498,7 @@ DEPENDENCIES = [
# We should also remove "3rd-party-licenses/LICENSE-unicodecsv.txt" file
when we remove this dependency
"unicodecsv>=0.14.1",
# The Universal Pathlib provides Pathlib-like interface for FSSPEC
- "universal-pathlib>=0.2.2",
+ "universal-pathlib==0.2.2", # Temporarily pin to 0.2.2 as 0.2.3 generates
mypy errors
# Werkzug 3 breaks Flask-Login 0.6.2, also connexion needs to be updated
to >= 3.0
# we should remove this limitation when FAB supports Flask 2.3 and we
migrate connexion to 3+
"werkzeug>=2.0,<3",