Skip to content

Commit e49b590

Browse files
committed
Release qlib 0.6.1
1 parent 9d19294 commit e49b590

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Users can easily install ``Qlib`` by pip according to the following command
7373

7474
**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.
7575

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

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

@@ -89,12 +89,12 @@ Also, users can install the latest developed ``Qlib`` by the source code accordi
8989
git clone https://github.com/microsoft/qlib.git && cd qlib
9090
python setup.py install
9191
```
92-
* If you have installed the stable by the command ``pip install pyqlib``:
92+
* If you have already installed the stable version by the command ``pip install pyqlib``:
9393
```bash
9494
git clone https://github.com/microsoft/qlib.git && cd qlib
9595
pip install .
9696
```
97-
**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.
97+
**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**.
9898
9999
## Data Preparation
100100
Load and prepare data by running the following code:

qlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the MIT License.
33

44

5-
__version__ = "0.6.0.dev"
5+
__version__ = "0.6.1"
66

77

88
import os

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
DESCRIPTION = "A Quantitative-research Platform"
1212
REQUIRES_PYTHON = ">=3.5.0"
1313

14-
VERSION = "0.6.0.dev"
14+
VERSION = "0.6.1"
1515

1616
# Detect Cython
1717
try:

0 commit comments

Comments
 (0)