Skip to content

Commit

Permalink
Release qlib 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
you-n-g committed Dec 12, 2020
1 parent 9d19294 commit e49b590
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -73,7 +73,7 @@ Users can easily install ``Qlib`` by pip according to the following command

**Note**: pip will install the latest stable qlib. However, the main branch of qlib is in active development. If you want to test the latest scripts or functions in the main branch. Please install qlib with the methods below.

Also, users can install the latest developed ``Qlib`` by the source code according to the following steps:
Also, users can install the latest dev version ``Qlib`` by the source code according to the following steps:

* Before installing ``Qlib`` from source, users need to install some dependencies:

Expand All @@ -89,12 +89,12 @@ Also, users can install the latest developed ``Qlib`` by the source code accordi
git clone https://github.com/microsoft/qlib.git && cd qlib
python setup.py install
```
* If you have installed the stable by the command ``pip install pyqlib``:
* If you have already installed the stable version by the command ``pip install pyqlib``:
```bash
git clone https://github.com/microsoft/qlib.git && cd qlib
pip install .
```
**Note**: **Only** the command ``pip install .`` **can** overwrite the stable version installed by ``pip install pyqlib``, which the command ``python setup.py install`` **can't** do.
**Note**: **Only** the command ``pip install .`` **can** overwrite the stable version installed by ``pip install pyqlib``, which the command ``python setup.py install`` **can't**.

## Data Preparation
Load and prepare data by running the following code:
Expand Down
2 changes: 1 addition & 1 deletion qlib/__init__.py
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.


__version__ = "0.6.0.dev"
__version__ = "0.6.1"


import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
DESCRIPTION = "A Quantitative-research Platform"
REQUIRES_PYTHON = ">=3.5.0"

VERSION = "0.6.0.dev"
VERSION = "0.6.1"

# Detect Cython
try:
Expand Down

0 comments on commit e49b590

Please sign in to comment.