Skip to content
Snippets Groups Projects
Commit c71c8681 authored by tqtg's avatar tqtg
Browse files

rename linux wheels to suported platform by pypi

parent 5e4c3e81
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ jobs: ...@@ -34,7 +34,7 @@ jobs:
- name: Display Python version - name: Display Python version
run: python -c "import sys; print(sys.version)" run: python -c "import sys; print(sys.version)"
- name: Install GCC for MacOS using Homebrew - name: Install GCC with OpenMP support for MacOS
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
run: | run: |
brew reinstall gcc@9 brew reinstall gcc@9
...@@ -61,12 +61,15 @@ jobs: ...@@ -61,12 +61,15 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v2
with: with:
name: wheels name: wheels
path: dist/ path: dist/
- name: Rename Linux wheels to supported platform of PyPI
run: for f in dist/*.whl; do mv "$f" "$(echo "$f" | sed s/linux/manylinux1/)"; done
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment