1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-14 00:06:58 +08:00

fix macos package name error

This commit is contained in:
Linlang
2024-12-19 13:37:58 +08:00
parent 5281d77fbb
commit 8e1c7d395b

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [windows-latest, macos-13, macos-14, macos-latest] os: [windows-latest, macos-13, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps: steps:
@@ -35,13 +35,14 @@ jobs:
python -c " python -c "
from pathlib import Path from pathlib import Path
import subprocess import subprocess
import shutil
replaced = subprocess.run(['sw_vers', '-productVersion'], capture_output=True, text=True).stdout.strip().split('.', 1)[0] + '_0' replaced = subprocess.run(['sw_vers', '-productVersion'], capture_output=True, text=True).stdout.strip().split('.', 1)[0] + '_0'
for whl_file in Path('./dist').glob('*.whl'): for whl_file in Path('./dist').glob('*.whl'):
parts = whl_file.name.split('_') parts = whl_file.name.split('_')
be_replaced = '_'.join(parts[1:3]) be_replaced = '_'.join(parts[1:3])
new_name = whl_file.name.replace(be_replaced, replaced) new_name = whl_file.name.replace(be_replaced, replaced)
new_whl_file = whl_file.with_name(new_name) new_whl_file = whl_file.resolve().parent.joinpath(whl_file.with_name(new_name))
whl_file.rename(new_whl_file) shutil.copy(whl_file.resolve(), new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}') print(f'Renamed: {whl_file} -> {new_whl_file}')
" "
- name: Build and publish - name: Build and publish