You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't get SanPy published to PyPi? I copied the brightest-path-lib publish.yml and it is failing on all the linux builds and pypi is not updating
All the linux build are failing with:
line 287, in build_in_container
raise NonPlatformWheelError()
cibuildwheel.util.NonPlatformWheelError:
cibuildwheel: Build failed because a pure Python wheel was generated.
If you intend to build a pure-Python wheel, you don't need cibuildwheel - use
`pip wheel -w DEST_DIR .` instead.
If you expected a platform wheel, check your project configuration, or run
cibuildwheel with CIBW_BUILD_VERBOSITY=1 to view build logs.
The publish.yml was not triggering when the "Release" workflow finished
I had to modify this ...
on:
workflow_run:
workflows: ["Release"]
types: [completed]
branches: [main]
to this ...
on:
push:
tags:
- 'v*'
The text was updated successfully, but these errors were encountered:
cudmore
changed the title
Can't get publich.yml to publish to sanpy?
Can't get SanPy publish.yml to publish to PyPi?
May 10, 2023
I can't get SanPy published to PyPi? I copied the brightest-path-lib publish.yml and it is failing on all the linux builds and pypi is not updating
I had to modify this ...
to this ...
The text was updated successfully, but these errors were encountered: