1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-01 01:51:18 +08:00

fix macos package name error

This commit is contained in:
Linlang
2024-12-19 14:40:09 +08:00
parent b512074567
commit 16fc2f54c2
2 changed files with 28 additions and 28 deletions

View File

@@ -54,34 +54,34 @@ jobs:
TWINE_PASSWORD: ${{ secrets.TESTPYPI_TOKEN }}
run: |
twine check dist/*.whl
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*.whl --verbose
twine upload --repository-url https://test.pypi.org/legacy/ dist/*.whl --verbose
# deploy_with_manylinux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Build wheel on Linux
# uses: RalfG/python-wheels-manylinux-build@v0.7.1-manylinux2014_x86_64
# with:
# # not supporting 3.6 due to annotations is not supported https://stackoverflow.com/a/52890129
# python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
# build-requirements: 'numpy cython'
# - name: Install dependencies
# run: |
# python -m pip install twine
# python -m pip list
# - name: Build and publish
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.TESTPYPI_TOKEN }}
# run: |
# ls dist
# twine check dist/*.whl
# twine upload --repository-url https://test.pypi.org/legacy/ dist/pyqlib-*-manylinux*.whl --verbose
deploy_with_manylinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build wheel on Linux
uses: RalfG/python-wheels-manylinux-build@v0.7.1-manylinux2014_x86_64
with:
# not supporting 3.6 due to annotations is not supported https://stackoverflow.com/a/52890129
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
build-requirements: 'numpy cython'
- name: Install dependencies
run: |
python -m pip install twine
python -m pip list
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_TOKEN }}
run: |
ls dist
twine check dist/*.whl
twine upload --repository-url https://test.pypi.org/legacy/ dist/pyqlib-*-manylinux*.whl --verbose
# build_wheels:
# runs-on: ${{ matrix.os }}