Skip to content

Commit

Permalink
BLD/FIX: remove Visual Studio C++ nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
mckib2 committed Sep 25, 2021
1 parent 06f6bb5 commit ef0408b
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/github-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,20 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, windows-latest, macos-latest]
os: [ubuntu-20.04, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'
python-version: '3.8'

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
run: |
choco install vcpython27 -f -y
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -55,7 +50,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'
python-version: '3.8'

- name: Build sdist
run: python setup.py sdist
Expand Down

0 comments on commit ef0408b

Please sign in to comment.