Skip to content

Commit b206ba9

Browse files
committed
fix github-deploy action
1 parent 8fc2c48 commit b206ba9

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/github-deploy.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,34 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
os: [ubuntu-22.04, windows-2022, macos-11]
19+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
23+
24+
- uses: actions/setup-python@v5
25+
26+
- name: Install cibuildwheel
27+
run: python -m pip install cibuildwheel==2.19.1
2328

2429
- name: Build wheels
25-
uses: pypa/[email protected]
30+
run: python -m cbuildwheel --output-dir wheelhouse
2631

27-
- uses: actions/upload-artifact@v3
32+
- uses: actions/upload-artifact@v4
2833
with:
34+
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
2935
path: ./wheelhouse/*.whl
3036

3137
build_sdist:
3238
name: Build source distribution
3339
runs-on: ubuntu-latest
3440
steps:
35-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
3642

3743
- name: Build sdist
3844
run: pipx run build --sdist
3945

40-
- uses: actions/upload-artifact@v3
46+
- uses: actions/upload-artifact@v4
4147
with:
4248
path: dist/*.tar.gz
4349

@@ -49,7 +55,7 @@ jobs:
4955
id-token: write
5056
if: github.event_name == 'release' && github.event.action == 'published'
5157
steps:
52-
- uses: actions/download-artifact@v3
58+
- uses: actions/download-artifact@v4
5359
with:
5460
name: artifact
5561
path: dist

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import Extension, setup
66

77
NAME = 'bchlib'
8-
VERSION = '2.0.0'
8+
VERSION = '2.0.1'
99
DESCRIPTION = 'A python wrapper module for the Linux kernel BCH library.'
1010
URL = 'https://github.com/jkent/python-bchlib'
1111

0 commit comments

Comments
 (0)