From 875b8baa77c4a46f1cc9c55b9256c3439ab86e79 Mon Sep 17 00:00:00 2001 From: "zhenshan.cao" Date: Mon, 28 Jun 2021 18:56:07 +0800 Subject: [PATCH] Update dependent pymilvus version (#203) Signed-off-by: zhenshan.cao --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5076cec..77332b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ --extra-index-url https://test.pypi.org/simple/ -pymilvus==2.0a1.dev55 +pymilvus==2.0.0rc1 pandas numpy sklearn==0.0 diff --git a/setup.py b/setup.py index 853cd1e..394f9ee 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ README = (HERE / 'README.md').read_text() requirements = [ - "pymilvus==2.0a1.dev55", + "pymilvus==2.0.0rc1", "pandas==1.1.5; python_version<'3.7'", "pandas==1.2.4; python_version>'3.6'", ]