Bump setuptools from 68.2.2 to 69.0.1 #227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build wheel | |
on: [push] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10','3.11'] | |
architecture: ['x86', 'x64'] | |
name: "Python ${{ matrix.python-version }} on Windows ${{ matrix.architecture }}" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools wheel build | |
- name: Build Wheel | |
run: python setup.py bdist_wheel --dist-dir wheelhouse/wheel-${{ matrix.python-version }}-${{ matrix.architecture }} | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: "wheelhouse-win" | |
path: wheelhouse | |
Linux: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10','3.11'] | |
architecture: ['x64'] | |
name: "Python ${{ matrix.python-version }} on Linux ${{ matrix.architecture }}" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools wheel build | |
- name: Build Wheel | |
run: python setup.py bdist_wheel --dist-dir wheelhouse/wheel-${{ matrix.python-version }}-${{ matrix.architecture }} | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: "wheelhouse-lin" | |
path: wheelhouse |