-
@lo5 , @mturoci , Is it feasible to pack waved server with pypi upload? Would like to understand the challenges with this feature request. Can PR and take a stab at it but but would like to understand/discuss the challenges/caveats. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
We want to do this. It'll definitely make the getting started experience much simpler. This is mainly packaging work:
Today we push one single platform-neutral |
Beta Was this translation helpful? Give feedback.
-
@sairaamv this is now implemented and released in nightly builds. Feel free to check it out. Simply choose your os-specific wheel, install it, hit |
Beta Was this translation helpful? Give feedback.
We want to do this. It'll definitely make the getting started experience much simpler.
This is mainly packaging work:
setup.py
and test against PyPI (90% of the work)wave run
automatically launchwaved
(usingsubprocess
orPOpen
).Today we push one single platform-neutral
none-any
whl
file to PyPI. Instead, we need to push at least 3 platform-specific whl files -x86_64
for windows, osx and linux. We already have makefile tasks that producewaved
for windows, osx and linux - it's just a matter of building them first and copying them into the whl build directory before invokingsetup.py bdist_wheel
, so that they're available inside thewhl
file. Once pip-install…