diff --git a/.github/workflows/wheels_arm64.yml b/.github/workflows/wheels_arm64.yml index c902853..519feca 100644 --- a/.github/workflows/wheels_arm64.yml +++ b/.github/workflows/wheels_arm64.yml @@ -41,12 +41,14 @@ jobs: needs: [build_aarch64_wheels] if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') runs-on: ubuntu-latest + strategy: + matrix: + python: [36, 37, 38, 39, 310, 311, 312] steps: - uses: actions/download-artifact@v4 with: - name: artifact-* + name: artifact-${{ matrix.python }} path: dist - merge-multiple: true - uses: pypa/gh-action-pypi-publish@v1.5.0 with: diff --git a/.github/workflows/wheels_win_64.yml b/.github/workflows/wheels_win_64.yml index 665ca98..85fb1f7 100644 --- a/.github/workflows/wheels_win_64.yml +++ b/.github/workflows/wheels_win_64.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/download-artifact@v4 with: name: artifact - path: wheelhouse + path: dist - uses: pypa/gh-action-pypi-publish@v1.5.0 with: diff --git a/scrypt/scrypt.py b/scrypt/scrypt.py index 1f4d6ac..a820d7c 100644 --- a/scrypt/scrypt.py +++ b/scrypt/scrypt.py @@ -26,7 +26,7 @@ _scrypt = cdll.LoadLibrary(importlib.util.find_spec('_scrypt').origin) -__version__ = '0.8.23' +__version__ = '0.8.24' _scryptenc_buf = _scrypt.exp_scryptenc_buf _scryptenc_buf.argtypes = [ diff --git a/setup.py b/setup.py index 3c9379d..419a982 100644 --- a/setup.py +++ b/setup.py @@ -142,7 +142,7 @@ setup( name='scrypt', - version='0.8.23', + version='0.8.24', description='Bindings for the scrypt key derivation function library', author='Magnus Hallin', author_email='mhallin@gmail.com',