diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 39b37fe3..b6dda409 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,6 +17,8 @@ jobs: run: python -m pip install cibuildwheel==2.21.3 - name: Build wheels + env: + CIBW_BEFORE_BUILD: pip install 'setuptools<72.2.0 ; implementation_name == "PyPy"' run: python -m cibuildwheel --output-dir wheelhouse - name: Check build result run: ls -lh wheelhouse/ diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml new file mode 100644 index 00000000..148d748a --- /dev/null +++ b/.github/workflows/wheel.yml @@ -0,0 +1,25 @@ +name: Wheel + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + pypi: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v3 + + - name: Install cibuildwheel + run: python -m pip install cibuildwheel==2.21.3 + + - name: Build wheels + env: + CIBW_BEFORE_BUILD: pip install 'setuptools<72.2.0 ; implementation_name == "PyPy"' + run: python -m cibuildwheel --output-dir wheelhouse + - name: Check build result + run: ls -lh wheelhouse/ diff --git a/libmc/__init__.py b/libmc/__init__.py index 82bfbd7e..7052be49 100644 --- a/libmc/__init__.py +++ b/libmc/__init__.py @@ -33,8 +33,8 @@ __file__ as _libmc_so_file ) -__VERSION__ = "1.4.7" -__version__ = "1.4.7" +__VERSION__ = "1.4.8" +__version__ = "1.4.8" __author__ = "mckelvin" __email__ = "mckelvin@users.noreply.github.com" __date__ = "Fri Jun 7 06:16:00 2024 +0800" diff --git a/src/version.go b/src/version.go index a7188c59..083866eb 100644 --- a/src/version.go +++ b/src/version.go @@ -1,6 +1,6 @@ package golibmc -const _Version = "1.4.7" +const _Version = "1.4.8" const _Author = "mckelvin" const _Email = "mckelvin@users.noreply.github.com" const _Date = "Fri Jun 7 06:16:00 2024 +0800"