File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,17 @@ jobs:
105
105
106
106
- name : Install cibuildwheel
107
107
run : |
108
- python -m pip install twine cibuildwheel==2.22.0
108
+ python -m pip install cibuildwheel==2.22.0
109
109
110
110
- name : Build wheel
111
111
run : |
112
112
python -m cibuildwheel --output-dir wheelhouse
113
113
114
+ - uses : actions/upload-artifact@v4
115
+ with :
116
+ name : flacarray-cp${{ matrix.python }}-${{ matrix.builder }}_${{ matrix.arch }}
117
+ path : ./wheelhouse/flacarray*cp${{ matrix.python }}-${{ matrix.builder }}*${{ matrix.arch }}*.whl
118
+
114
119
upload_pypi :
115
120
needs : build_wheels
116
121
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 14
14
# Set the log level
15
15
logging .basicConfig (level = log_level )
16
16
17
- __version__ = "0.2.1 "
17
+ __version__ = "0.2.2 "
18
18
19
19
from .array import FlacArray
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "mesonpy"
9
9
10
10
[project ]
11
11
name = " flacarray"
12
- version = " 0.2.1 "
12
+ version = " 0.2.2 "
13
13
description = " FLAC Compression of Arrays"
14
14
readme = " README.md"
15
15
maintainers = [
You can’t perform that action at this time.
0 commit comments