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
With Python 3.11.3, I installed Shiny in a venv for another project, with pip install -e ../py-shiny, but when I did this, the new project couldn't find the py.typed file.
I'm not 100% sure, but I believe that this is because setuptools >=64 uses a new mechanism instead of egg-link.
See:
I tried this with py-shiny, and it resulted in the JS and CSS web assets not being available when running an app. So we'll probably want to fix it in that case.
With Python 3.11.3, I installed Shiny in a venv for another project, with
pip install -e ../py-shiny
, but when I did this, the new project couldn't find thepy.typed
file.I'm not 100% sure, but I believe that this is because setuptools >=64 uses a new mechanism instead of
egg-link
.See:
Apparently one can also install with
strict
mode (https://setuptools.pypa.io/en/latest/userguide/development_mode.html#strict-editable-installs):I tried this with py-shiny, and it resulted in the JS and CSS web assets not being available when running an app. So we'll probably want to fix it in that case.
What does work for now is to use
compat
mode:The text was updated successfully, but these errors were encountered: