Skip to content

Commit dc54836

Browse files
Derek-Wdsyou-n-g
authored andcommitted
Fix and move to version 0.6.0
1 parent d488a50 commit dc54836

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/run_all_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ def run(times=1, models=None, exclude=False):
243243
execute(f"{python_path} -m pip install --upgrade cython") # TODO: FIX ME!
244244
if fn == "TFT":
245245
execute(
246-
f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall --ignore-installed PyYAML -e git+https://github.com/you-n-g/qlib#egg=pyqlib"
246+
f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall --ignore-installed PyYAML -e git+https://github.com/microsoft/qlib#egg=pyqlib"
247247
) # TODO: FIX ME!
248248
else:
249249
execute(
250-
f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall -e git+https://github.com/you-n-g/qlib#egg=pyqlib"
250+
f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall -e git+https://github.com/microsoft/qlib#egg=pyqlib"
251251
) # TODO: FIX ME!
252252
sys.stderr.write("\n")
253253
# run workflow_by_config for multiple times

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.alpha"
5+
__version__ = "0.6.0"
66

77
import os
88
import re

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
NAME = "pyqlib"
1313
DESCRIPTION = "A Quantitative-research Platform"
1414
REQUIRES_PYTHON = ">=3.5.0"
15-
VERSION = "0.6.0.alpha"
15+
VERSION = "0.6.0"
1616

1717
# Detect Cython
1818
try:

0 commit comments

Comments
 (0)