summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 20:59:09 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 20:59:09 +0200
commitd56c5eb809301904a1cde602e5f5e776553a97bd (patch)
tree3b4fab58bccc7633600e460fe53047f7f7ea0470
parent5594bc56ff415aec7249e79096224f0cf57ac72b (diff)
downloadpsutil-d56c5eb809301904a1cde602e5f5e776553a97bd.tar.gz
yo
-rw-r--r--.github/workflows/build_wheels.yml37
1 files changed, 19 insertions, 18 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 6a54511a..bb57dd01 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -11,31 +11,32 @@ jobs:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
env:
+ CIBW_SKIP: "pp27-*win* cp27-*manylinux* pp-*manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v1
- name: Install Python 3.7
- with:
- python-version: '3.7'
+ - uses: actions/checkout@v1
+ - uses: actions/setup-python@v1
+ name: Install Python 3.7
+ with:
+ python-version: '3.7'
- - name: Install Visual C++ for Python 2.7
- if: startsWith(matrix.os, 'windows')
- run: |
- choco install vcpython27 -f -y
+ - name: Install Visual C++ for Python 2.7
+ if: startsWith(matrix.os, 'windows')
+ run: |
+ choco install vcpython27 -f -y
- - name: "install cibuildwheel"
- run: $PYBIN/pip install cibuildwheel==1.4.1
+ - name: "install cibuildwheel"
+ run: pip install cibuildwheel==1.4.1
- - name: Build wheel
- run: cibuildwheel .
+ - name: build wheel
+ run: cibuildwheel .
- - name: Upload wheels
- uses: actions/upload-artifact@v1
- with:
- name: wheels2
- path: wheelhouse
+ - name: Upload wheels
+ uses: actions/upload-artifact@v1
+ with:
+ name: wheels2
+ path: wheelhouse
# wheel:
# name: build wheel for ${{ matrix.os }}