Skip to content

Commit

Permalink
fix_ci_error
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetWolf committed Dec 26, 2024
1 parent b2fc685 commit 2343527
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ prerequisite:
python -c "from setuptools import setup, Extension; from Cython.Build import cythonize; import numpy; extensions = [Extension('qlib.data._libs.rolling', ['qlib/data/_libs/rolling.pyx'], language='c++', include_dirs=[numpy.get_include()]), Extension('qlib.data._libs.expanding', ['qlib/data/_libs/expanding.pyx'], language='c++', include_dirs=[numpy.get_include()])]; setup(ext_modules=cythonize(extensions, language_level='3'), script_args=['build_ext', '--inplace'])"; \
fi

ifeq ($(IS_WINDOWS),true)
python -m pip install pywinpty --only-binary=:all:
endif
@if [ "$(IS_WINDOWS)" = "true" ]; then \
python -m pip install pywinpty --only-binary=:all:; \
fi

# Install the package in editable mode.
dependencies:
Expand Down

0 comments on commit 2343527

Please sign in to comment.