This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch release-1.20
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.20 by this push:
new 4746817dd62 [FLINK-39052][python] Limit setuptools version to < 82.0.0
(#27566)
4746817dd62 is described below
commit 4746817dd62512ea164f63ce3c58703587579b4f
Author: Dian Fu <[email protected]>
AuthorDate: Tue Feb 10 17:00:16 2026 +0800
[FLINK-39052][python] Limit setuptools version to < 82.0.0 (#27566)
---
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 e7d55b56558..470bf705686 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.43.0,<2.49.0
cython>=0.29.24
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 8cb6a1659c3..0d9acef2868 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(