1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-01 01:51:18 +08:00
This commit is contained in:
Linlang Lv (iSoftStone)
2023-07-18 11:31:21 +08:00
parent 9e0039226b
commit d5ee587a96

View File

@@ -37,15 +37,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Update pip to the latest version
# pip release version 23.1 on Apr.15 2023, CI failed to run, Please refer to #1495 ofr detailed logs.
# The pip version has been temporarily fixed to 23.0
run: |
python -m pip install --upgrade pip
- name: Set up Python tools
run: |
python -m pip install --upgrade pip
python -m pip install cython
python -m pip install --upgrade pip
python -m pip install numpy<1.24
python setup.py bdist_wheel
python -c "from pathlib import Path; current_directory = Path.cwd(); dist_directory = current_directory / 'dist'; files = dist_directory.glob('*'); [print(file.name) for file in files]"