1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-13 15:56:57 +08:00

ci: install dependencies with --no-cache-dir to avoid disk space issues

This commit is contained in:
SunsetWolf
2025-12-18 05:08:02 +00:00
parent 810897896b
commit 07d6b45eb9

View File

@@ -74,37 +74,37 @@ prerequisite:
# Install the package in editable mode. # Install the package in editable mode.
dependencies: dependencies:
python -m pip install -e . python -m pip install --no-cache-dir -e .
lightgbm: lightgbm:
python -m pip install lightgbm --prefer-binary python -m pip install --no-cache-dir lightgbm --prefer-binary
rl: rl:
python -m pip install -e .[rl] python -m pip install --no-cache-dir -e .[rl]
develop: develop:
python -m pip install -e .[dev] python -m pip install --no-cache-dir -e .[dev]
lint: lint:
python -m pip install -e .[lint] python -m pip install --no-cache-dir -e .[lint]
docs: docs:
python -m pip install -e .[docs] python -m pip install --no-cache-dir -e .[docs]
package: package:
python -m pip install -e .[package] python -m pip install --no-cache-dir -e .[package]
test: test:
python -m pip install -e .[test] python -m pip install --no-cache-dir -e .[test]
analysis: analysis:
python -m pip install -e .[analysis] python -m pip install --no-cache-dir -e .[analysis]
client: client:
python -m pip install -e .[client] python -m pip install --no-cache-dir -e .[client]
all: all:
python -m pip install -e .[pywinpty,dev,lint,docs,package,test,analysis,rl] python -m pip install --no-cache-dir -e .[pywinpty,dev,lint,docs,package,test,analysis,rl]
install: prerequisite dependencies install: prerequisite dependencies