File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ jobs:
129
129
uses : actions/download-artifact@v4
130
130
with :
131
131
path : dist
132
+ - name : Flatten dist dir
133
+ run : find dist -mindepth 2 -type f -exec mv -f '{}' dist/ ';'
132
134
- name : Set version from git ref
133
135
run : echo "WGPU_PY_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
134
136
- name : Upload Release Assets
@@ -138,8 +140,8 @@ jobs:
138
140
name : ${{ env.WGPU_PY_VERSION }}
139
141
token : ${{ secrets.GITHUB_TOKEN }}
140
142
files : |
141
- dist/**/* .tar.gz
142
- dist/**/* .whl
143
+ dist/*.tar.gz
144
+ dist/*.whl
143
145
body : |
144
146
Autogenerated binary wheels that include wgpu-native.
145
147
See [the changelog](https://github.com/pygfx/wgpu-py/blob/main/CHANGELOG.md) for details.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Possible sections in each release:
17
17
* Security: in case of vulnerabilities.
18
18
19
19
20
- ### [ v0.17.2 ] - 09-08 -2024
20
+ ### [ v0.17.3 ] - 10-09 -2024
21
21
22
22
Added:
23
23
26
26
* Support for IMGUI, via ` wgpu.utils.imgui ` .
27
27
* Wx is now a fully supported GUI backend.
28
28
* A ` BaseEnum ` class was added to ` wgpu.utils ` , so it can be used in downstream libs like pygfx.
29
+ * The ` WGPUCanvas.add_event_handler() ` method now has an ` order ` arg.
29
30
30
31
Changed:
31
32
Original file line number Diff line number Diff line change 13
13
from . import resources # noqa: F401,F403
14
14
15
15
16
- __version__ = "0.17.2 "
16
+ __version__ = "0.17.3 "
17
17
version_info = tuple (map (int , __version__ .split ("." )))
18
18
19
19
You can’t perform that action at this time.
0 commit comments