Skip to content

Commit

Permalink
run maturin on windows, fix gsed installation
Browse files Browse the repository at this point in the history
  • Loading branch information
bminixhofer committed Jan 13, 2021
1 parent 1df239d commit 54ce8be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install GSED (if needed) # needed by set_version.sh
if: github.event_name == 'release' && matrix.os == 'macos-latest'
- name: Install GSED (if needed) # needed by set_version.sh and maturin.sh
if: matrix.os == 'macos-latest'
run: |
brew install gnu-sed
- name: Update version (if release)
Expand All @@ -113,7 +113,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install maturin==0.8.3
./scripts/maturin.sh build --interpreter python --release --manylinux 1
bash scripts/maturin.sh build --interpreter python --release --manylinux 1
- name: Upload wheel as artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 54ce8be

Please sign in to comment.