File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ jobs:
153
153
uv build
154
154
uv run task repack
155
155
mv neonize/*.so LIBS
156
- cp neonize /*.whl LIBS/
156
+ cp dist /*.whl LIBS/
157
157
if [[ $UV_PUBLISH_TOKEN ]];then
158
158
uv publish
159
159
fi
@@ -224,7 +224,7 @@ jobs:
224
224
uv build
225
225
uv run task repack
226
226
mv neonize/*.so LIBS
227
- cp neonize /*.whl LIBS/
227
+ cp dist /*.whl LIBS/
228
228
if [[ $UV_PUBLISH_TOKEN ]];then
229
229
uv publish
230
230
fi
@@ -285,7 +285,7 @@ jobs:
285
285
uv run task build goneonize
286
286
uv build
287
287
uv run task repack
288
- cp neonize /*.whl LIBS/
288
+ cp dist /*.whl LIBS/
289
289
mv neonize/*.dylib LIBS/
290
290
if [[ $UV_PUBLISH_TOKEN ]];then
291
291
uv publish
Original file line number Diff line number Diff line change @@ -78,6 +78,6 @@ def get_last_goneonize_version(self) -> str:
78
78
for data in r :
79
79
data ['created_at' ] = datetime .strptime (data ['created_at' ], "%Y-%m-%dT%H:%M:%SZ" ).timestamp ()
80
80
for release in sorted (r , key = lambda x :x ['created_at' ], reverse = True ):
81
- if len (release ["assets" ]):
81
+ if len (release ["assets" ]) > 10 :
82
82
return release ["tag_name" ]
83
83
raise TypeError ("Unavailable" )
Original file line number Diff line number Diff line change 45
45
print (version .neonize )
46
46
elif parse .pypi_format :
47
47
print (version .version_pypi_standard )
48
+ else :
49
+ print (version .neonize )
48
50
case "goneonize" :
49
51
version = Version ()
50
52
github = Github ()
You can’t perform that action at this time.
0 commit comments