This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch release-2.0
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-2.0 by this push:
new 037b4b9985c [FLINK-39052][python] Limit setuptools version to < 82.0.0
(#27575)
037b4b9985c is described below
commit 037b4b9985c8e3c5b455908bcedae8a4f5efdb0e
Author: Dian Fu <[email protected]>
AuthorDate: Wed Feb 11 13:43:34 2026 +0800
[FLINK-39052][python] Limit setuptools version to < 82.0.0 (#27575)
---
flink-python/dev/dev-requirements.txt | 2 +-
flink-python/setup.py | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/flink-python/dev/dev-requirements.txt
b/flink-python/dev/dev-requirements.txt
index bea817bf797..0c9654db99c 100755
--- a/flink-python/dev/dev-requirements.txt
+++ b/flink-python/dev/dev-requirements.txt
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
pip>=20.3
-setuptools>=75.3
+setuptools>=75.3,<82.0.0
wheel
apache-beam>=2.54.0,<=2.61.0
cython>=0.29.24
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 0a867429d86..795bc04e773 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -327,6 +327,7 @@ try:
'pemja>=0.5.6,<0.5.7;platform_system != "Windows"',
'httplib2>=0.19.0',
'ruamel.yaml>=0.18.4',
+ 'setuptools>=75.3,<82.0.0',
apache_flink_libraries_dependency]
setup(