1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-12 07:16:54 +08:00

Fix and move to version 0.6.0

This commit is contained in:
Jactus
2020-12-01 09:59:46 +08:00
parent d488a503b2
commit bb5f3cb33d
3 changed files with 4 additions and 4 deletions

View File

@@ -243,11 +243,11 @@ def run(times=1, models=None, exclude=False):
execute(f"{python_path} -m pip install --upgrade cython") # TODO: FIX ME! execute(f"{python_path} -m pip install --upgrade cython") # TODO: FIX ME!
if fn == "TFT": if fn == "TFT":
execute( execute(
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" f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall --ignore-installed PyYAML -e git+https://github.com/microsoft/qlib#egg=pyqlib"
) # TODO: FIX ME! ) # TODO: FIX ME!
else: else:
execute( execute(
f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall -e git+https://github.com/you-n-g/qlib#egg=pyqlib" f"cd {env_path} && {python_path} -m pip install --upgrade --force-reinstall -e git+https://github.com/microsoft/qlib#egg=pyqlib"
) # TODO: FIX ME! ) # TODO: FIX ME!
sys.stderr.write("\n") sys.stderr.write("\n")
# run workflow_by_config for multiple times # run workflow_by_config for multiple times

View File

@@ -2,7 +2,7 @@
# Licensed under the MIT License. # Licensed under the MIT License.
__version__ = "0.6.0.alpha" __version__ = "0.6.0"
import os import os
import re import re

View File

@@ -12,7 +12,7 @@ from setuptools import find_packages, setup, Extension
NAME = "pyqlib" NAME = "pyqlib"
DESCRIPTION = "A Quantitative-research Platform" DESCRIPTION = "A Quantitative-research Platform"
REQUIRES_PYTHON = ">=3.5.0" REQUIRES_PYTHON = ">=3.5.0"
VERSION = "0.6.0.alpha" VERSION = "0.6.0"
# Detect Cython # Detect Cython
try: try: