This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f25ce511405 Add min version to cloudpickle (#43066)
f25ce511405 is described below
commit f25ce5114057353eec56d3c1d2b6b736caa4d85a
Author: Kalyan R <[email protected]>
AuthorDate: Thu Oct 17 01:32:48 2024 +0530
Add min version to cloudpickle (#43066)
* pin cloudpickle >= 3.0.0
* pin cloudpickle >= 2.1.1 as apache-beam requires it to be ~=2.2.1
---
hatch_build.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hatch_build.py b/hatch_build.py
index 72f59c79ef9..6dc0e1c9c7c 100644
--- a/hatch_build.py
+++ b/hatch_build.py
@@ -78,7 +78,8 @@ CORE_EXTRAS: dict[str, list[str]] = {
"cgroupspy>=0.2.2",
],
"cloudpickle": [
- "cloudpickle",
+ # Latest version of apache-beam requires cloudpickle~=2.2.1
+ "cloudpickle>=2.2.1",
],
"github-enterprise": [
"apache-airflow[fab]",