Skip to content

Commit

Permalink
fix: remove python 3.5 wheel on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
carrascomj committed Aug 8, 2021
1 parent 39f6932 commit 400abb1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# There is a known issue where Python C extensions
# can not be built on Python 3.5 on Windows.
# https://github.com/actions/virtual-environments/issues/34
- os: windows-latest
python-version: 3.5
steps:
- uses: actions/checkout@v1

Expand All @@ -161,7 +155,7 @@ jobs:
- name: Install with maturin
run: |
maturin build --release --no-sdist --strip --interpreter python${{matrix.python-version}}
maturin build --release --no-sdist --strip
- name: List wheels
if: matrix.os == 'windows-latest'
Expand Down

0 comments on commit 400abb1

Please sign in to comment.