Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Commit

Permalink
Prepare for the release of version 2.0.0rc2 (#253)
Browse files Browse the repository at this point in the history
Signed-off-by: zhenshan.cao <[email protected]>
  • Loading branch information
czs007 authored Jul 12, 2021
1 parent 78e8c29 commit a96a570
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The following collection shows Milvus versions and recommended PyMilvus-ORM vers
|Milvus version| Recommended PyMilvus-ORM version |
|:-----:|:-----:|
| 2.0.0-RC1 | 2.0.0rc1 |
| 2.0.0-RC2 | 2.0.0rc2 |


## Installation
Expand All @@ -35,7 +36,7 @@ $ pip3 install pymilvus-orm
You can install a specific version of PyMilvus-ORM by:

```shell
$ pip3 install pymilvus-orm==2.0.0rc1
$ pip3 install pymilvus-orm==2.0.0rc2
```

You can upgrade PyMilvus-ORM to the latest stable version by:
Expand Down
6 changes: 3 additions & 3 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PyMilvus-ORM only support python3(>= 3.6), usually, it's ok to install PyMilvus-

.. code-block:: shell
$ python3 -m pip install pymilvus-orm==2.0.0rc1
$ python3 -m pip install pymilvus-orm==2.0.0rc2
Installing in a virtual environment
====================================
Expand All @@ -27,7 +27,7 @@ See `virtualenv <https://virtualenv.pypa.io/en/latest/>`_ for more information a
$ python3 -m pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
(venv) $ pip install pymilvus-orm==2.0.0rc1
(venv) $ pip install pymilvus-orm==2.0.0rc2
If you want to exit the virtualenv ``venv``, you can use ``deactivate``.

Expand All @@ -49,7 +49,7 @@ If you want to install a specific version of PyMilvus-ORM:

.. code-block:: shell
(venv) $ pip install pymilvus-orm==2.0.0rc1
(venv) $ pip install pymilvus-orm==2.0.0rc2
If you want to upgrade PyMilvus-ORM into the latest version published:

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--extra-index-url https://test.pypi.org/simple/
pymilvus==2.0.0rc1
pymilvus==2.0.0rc2
pandas
numpy
sklearn==0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
README = (HERE / 'README.md').read_text()

requirements = [
"pymilvus==2.0.0rc2.dev14",
"pymilvus==2.0.0rc2",
"pandas==1.1.5; python_version<'3.7'",
"pandas==1.2.4; python_version>'3.6'",
]
Expand Down

0 comments on commit a96a570

Please sign in to comment.