This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch rc/1.3.2
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit b9ed80b5ace0a2ff426948ab426a30e2dbe64d7a
Author: Haonan <[email protected]>
AuthorDate: Thu Jun 6 17:36:55 2024 +0800

    [PY-client] Unify setup.py and requirement.txt (#12601)
---
 iotdb-client/client-py/requirements.txt   | 4 ++--
 iotdb-client/client-py/resources/setup.py | 7 +++----
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/iotdb-client/client-py/requirements.txt 
b/iotdb-client/client-py/requirements.txt
index ba23aeea071..23c97837a79 100644
--- a/iotdb-client/client-py/requirements.txt
+++ b/iotdb-client/client-py/requirements.txt
@@ -21,5 +21,5 @@ pandas>=1.3.5
 numpy>=1.21.4
 thrift>=0.14.1
 # SQLAlchemy Dialect
-sqlalchemy == 1.3.20
-sqlalchemy-utils == 0.36.8
\ No newline at end of file
+sqlalchemy<1.5,>=1.4
+sqlalchemy-utils>=0.37.8
diff --git a/iotdb-client/client-py/resources/setup.py 
b/iotdb-client/client-py/resources/setup.py
index 3af2705af26..acf5857327a 100644
--- a/iotdb-client/client-py/resources/setup.py
+++ b/iotdb-client/client-py/resources/setup.py
@@ -40,10 +40,9 @@ setuptools.setup(
     url="https://github.com/apache/iotdb";,
     packages=setuptools.find_packages(),
     install_requires=[
-        "thrift>=0.13.0",
-        "pandas>=1.0.0,<1.99.99",
-        "numpy>=1.0.0",
-        "testcontainers>=2.0.0",
+        "thrift>=0.14.1",
+        "pandas>=1.3.5",
+        "numpy>=1.21.4",
         "sqlalchemy<1.5,>=1.4",
         "sqlalchemy-utils>=0.37.8",
     ],

Reply via email to