Skip to content

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Mar 1, 2024
1 parent f1000a6 commit 63ed5ee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
env:
# Disable explicitly python 3.11 and building PyPy wheels
CIBW_SKIP: cp311-* pp*
CIBW_SKIP: pp*
CIBW_PRERELEASE_PYTHONS: False

- uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/wheels_win_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl

upload_pypi:
name: Upload to PyPI (prod)
needs: [build_wheels_for_win]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
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.22'
__version__ = '0.8.23'

_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.21',
version='0.8.23',
description='Bindings for the scrypt key derivation function library',
author='Magnus Hallin',
author_email='[email protected]',
Expand Down

0 comments on commit 63ed5ee

Please sign in to comment.