From 057317f661ff615b5ca674ddf673c7219ca30f91 Mon Sep 17 00:00:00 2001 From: yangxuan Date: Thu, 18 Jul 2024 14:39:56 +0800 Subject: [PATCH] fix: Edit setuptools upper version for py380 Signed-off-by: yangxuan --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 54d339b4c..5ded981e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,8 @@ requires-python = '>=3.8' description = "Python Sdk for Milvus" readme = "README.md" dependencies=[ - "setuptools >= 67", # python3.12 pkg_resources + "setuptools>69", + "setuptools<70.1;python_version<='3.8'", "grpcio>=1.49.1, <=1.63.0", "protobuf>=3.20.0", "environs<=9.5.0", @@ -29,6 +30,11 @@ dependencies=[ classifiers=[ "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: Apache Software License", ]