Skip to content

Commit e41b0bb

Browse files
potiukCloud Composer Team
authored andcommitted
Limit universal-pathlib to < 0.2.0 (#37311)
The Universal Pathlib provides Pathlib-like interface for FSSPEC In 0.1. *It was not very well defined for extension, so the way how we use it for 0.1.* so we used a lot of private methods and attributes that were not defined in the interface an they are broken with version 0.2.0 which is much better suited for extension and supports Python 3.12. We should limit it, unti we migrate to 0.2.0 See: fsspec/universal_pathlib#173 (comment) This is prerequistite to make Airflow compatible with Python 3.12 Tracked in apache/airflow#36755 GitOrigin-RevId: 13012744ada457883e57848f6fc45454d9c25a4c
1 parent f274f50 commit e41b0bb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,15 @@ dependencies = [
147147
# See https://github.com/apache/airflow/pull/31693
148148
# We should also remove "licenses/LICENSE-unicodecsv.txt" file when we remove this dependency
149149
"unicodecsv>=0.14.1",
150-
"universal-pathlib>=0.1.4",
150+
# The Universal Pathlib provides Pathlib-like interface for FSSPEC
151+
# In 0.1. *It was not very well defined for extension, so the way how we use it for 0.1.*
152+
# so we used a lot of private methods and attributes that were not defined in the interface
153+
# an they are broken with version 0.2.0 which is much better suited for extension and supports
154+
# Python 3.12. We should limit it, unti we migrate to 0.2.0
155+
# See: https://github.com/fsspec/universal_pathlib/pull/173#issuecomment-1937090528
156+
# This is prerequistite to make Airflow compatible with Python 3.12
157+
# Tracked in https://github.com/apache/airflow/pull/36755
158+
"universal-pathlib>=0.1.4,<0.2.0",
151159
# Werkzug 3 breaks Flask-Login 0.6.2, also connexion needs to be updated to >= 3.0
152160
# we should remove this limitation when FAB supports Flask 2.3 and we migrate connexion to 3+
153161
"werkzeug>=2.0,<3",

0 commit comments

Comments
 (0)