Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
Bump all the versions in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Dec 12, 2022
1 parent f98e756 commit 8b3dd55
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- "pypy3"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: sudo apt-get install -y libffi-dev
Expand All @@ -34,29 +34,29 @@ jobs:
needs: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"
- run: pip install -U pip setuptools wheel
- run: pip install build==0.6.0.post1
- run: pip install build==0.9.0
- run: python -m build --sdist .
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: sdist
path: ./dist/*.tar.gz
cibuildwheel:
needs: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build wheels
uses: pypa/cibuildwheel@v2.1.1
- uses: actions/upload-artifact@v2
uses: pypa/cibuildwheel@v2.11.3
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl

0 comments on commit 8b3dd55

Please sign in to comment.