Skip to content

Commit 63ed5ee

Browse files
committed
Prepare next release
1 parent f1000a6 commit 63ed5ee

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/wheels_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: python -m cibuildwheel --output-dir wheelhouse
2222
env:
2323
# Disable explicitly python 3.11 and building PyPy wheels
24-
CIBW_SKIP: cp311-* pp*
24+
CIBW_SKIP: pp*
2525
CIBW_PRERELEASE_PYTHONS: False
2626

2727
- uses: actions/upload-artifact@v4

.github/workflows/wheels_win_64.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ jobs:
3434
- uses: actions/upload-artifact@v4
3535
with:
3636
path: wheelhouse/*.whl
37+
3738
upload_pypi:
3839
name: Upload to PyPI (prod)
3940
needs: [build_wheels_for_win]
4041
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
41-
runs-on: windows-latest
42+
runs-on: ubuntu-latest
4243
steps:
4344
- uses: actions/download-artifact@v4
4445
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.22'
29+
__version__ = '0.8.23'
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.21',
145+
version='0.8.23',
146146
description='Bindings for the scrypt key derivation function library',
147147
author='Magnus Hallin',
148148
author_email='[email protected]',

0 commit comments

Comments
 (0)