Skip to content

Commit

Permalink
Prepare next release to fix wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Mar 1, 2024
1 parent 63ed5ee commit da2882f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/wheels_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels_win_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: artifact
path: wheelhouse
path: dist

- uses: pypa/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion scrypt/scrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit da2882f

Please sign in to comment.