Skip to content

Commit

Permalink
Prepare for v0.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: yinghao.zou <[email protected]>
  • Loading branch information
yinghao.zou committed Jan 21, 2021
1 parent 7efa1ac commit 05a6cc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ For detailed SDK documentation, refer to [API Documentation](https://milvus-io.g

### Prerequisites

pymilvus only supports Python 3.5 or higher.
pymilvus only supports Python 3.6 or higher.

### Install pymilvus

Expand Down Expand Up @@ -77,13 +77,13 @@ The following collection shows Milvus versions and recommended pymilvus versions
| 0.9.1 | 0.2.12 |
| 0.10.0 | 0.2.13 |
| 0.10.1 - 0.10.4| 0.2.14 |
| 0.10.5| 0.2.15 |
| 0.10.5| 0.2.15, 0.4.0 |


You can install a specific version of pymilvus by:

```shell
$ pip install pymilvus==0.2.15
$ pip install pymilvus==0.4.0
```

You can upgrade `pymilvus` to the latest version by:
Expand Down
2 changes: 1 addition & 1 deletion milvus/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""client module"""

__version__ = "0.2.15"
__version__ = "0.4.0"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
include_package_data=True,
install_requires=["grpcio>=1.22.0", "grpcio-tools>=1.22.0", "requests>=2.22.0", "ujson>=1.35", "numpy>=1.16.3"],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],

python_requires='>=3.5'
python_requires='>=3.6'
)

0 comments on commit 05a6cc6

Please sign in to comment.