Skip to content

Commit da2882f

Browse files
committed
Prepare next release to fix wheels
1 parent 63ed5ee commit da2882f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/wheels_arm64.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,14 @@ jobs:
4141
needs: [build_aarch64_wheels]
4242
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
4343
runs-on: ubuntu-latest
44+
strategy:
45+
matrix:
46+
python: [36, 37, 38, 39, 310, 311, 312]
4447
steps:
4548
- uses: actions/download-artifact@v4
4649
with:
47-
name: artifact-*
50+
name: artifact-${{ matrix.python }}
4851
path: dist
49-
merge-multiple: true
5052

5153
- uses: pypa/[email protected]
5254
with:

.github/workflows/wheels_win_64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/download-artifact@v4
4545
with:
4646
name: artifact
47-
path: wheelhouse
47+
path: dist
4848

4949
- uses: pypa/[email protected]
5050
with:

scrypt/scrypt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
_scrypt = cdll.LoadLibrary(importlib.util.find_spec('_scrypt').origin)
2828

29-
__version__ = '0.8.23'
29+
__version__ = '0.8.24'
3030

3131
_scryptenc_buf = _scrypt.exp_scryptenc_buf
3232
_scryptenc_buf.argtypes = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142

143143
setup(
144144
name='scrypt',
145-
version='0.8.23',
145+
version='0.8.24',
146146
description='Bindings for the scrypt key derivation function library',
147147
author='Magnus Hallin',
148148
author_email='[email protected]',

0 commit comments

Comments
 (0)