Skip to content

Commit

Permalink
Update the documents for 2.0.0rc7 (#750)
Browse files Browse the repository at this point in the history
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
  • Loading branch information
Xiangyu Wang committed Oct 11, 2021
1 parent 64a0a7b commit fff6b96
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The following collection shows Milvus versions and recommended PyMilvus versions
| 2.0.0-RC4 | 2.0.0rc4 |
| 2.0.0-RC5 | 2.0.0rc5 |
| 2.0.0-RC6 | 2.0.0rc6 |
| 2.0.0-RC7 | 2.0.0rc7 |


## Installation
Expand All @@ -41,7 +42,7 @@ $ pip3 install pymilvus
You can install a specific version of PyMilvus by:

```shell
$ pip3 install pymilvus==2.0.0rc6
$ pip3 install pymilvus==2.0.0rc7
```

You can upgrade PyMilvus to the latest version by:
Expand All @@ -53,7 +54,7 @@ $ pip3 install --upgrade pymilvus

## Documentation

Documentation is available online: https://milvus.io/api-reference/pymilvus/v2.0.0rc6/install.html.
Documentation is available online: https://milvus.io/api-reference/pymilvus/v2.0.0rc7/install.html.


## Packages
Expand Down Expand Up @@ -86,4 +87,4 @@ $ python3 -m pip install --index-url https://test.pypi.org/simple/ pymilvus


[mergify]: https://mergify.io
[mergify-status]: https://img.shields.io/endpoint.svg?url=https://gh.mergify.io/badges/milvus-io/pymilvus&style=plastic
[mergify-status]: https://img.shields.io/endpoint.svg?url=https://gh.mergify.io/badges/milvus-io/pymilvus&style=plastic
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Milvus'

# The full version, including alpha/beta/rc tags
release = '2.0.0rc6'
release = '2.0.0rc7'
show_authors = True


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 only support python3(>= 3.6), usually, it's ok to install PyMilvus like

.. code-block:: shell
$ python3 -m pip install pymilvus==2.0.0rc6
$ python3 -m pip install pymilvus==2.0.0rc7
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==2.0.0rc6
(venv) $ pip install pymilvus==2.0.0rc7
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:

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

Expand Down

0 comments on commit fff6b96

Please sign in to comment.