File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 21
21
run : python -m cibuildwheel --output-dir wheelhouse
22
22
env :
23
23
# Disable explicitly python 3.11 and building PyPy wheels
24
- CIBW_SKIP : cp311-* pp*
24
+ CIBW_SKIP : pp*
25
25
CIBW_PRERELEASE_PYTHONS : False
26
26
27
27
- uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -34,11 +34,12 @@ jobs:
34
34
- uses : actions/upload-artifact@v4
35
35
with :
36
36
path : wheelhouse/*.whl
37
+
37
38
upload_pypi :
38
39
name : Upload to PyPI (prod)
39
40
needs : [build_wheels_for_win]
40
41
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
41
- runs-on : windows -latest
42
+ runs-on : ubuntu -latest
42
43
steps :
43
44
- uses : actions/download-artifact@v4
44
45
with :
Original file line number Diff line number Diff line change 26
26
27
27
_scrypt = cdll .LoadLibrary (importlib .util .find_spec ('_scrypt' ).origin )
28
28
29
- __version__ = '0.8.22 '
29
+ __version__ = '0.8.23 '
30
30
31
31
_scryptenc_buf = _scrypt .exp_scryptenc_buf
32
32
_scryptenc_buf .argtypes = [
Original file line number Diff line number Diff line change 142
142
143
143
setup (
144
144
name = 'scrypt' ,
145
- version = '0.8.21 ' ,
145
+ version = '0.8.23 ' ,
146
146
description = 'Bindings for the scrypt key derivation function library' ,
147
147
author = 'Magnus Hallin' ,
148
148
You can’t perform that action at this time.
0 commit comments