-
Notifications
You must be signed in to change notification settings - Fork 187
Open
Labels
Description
This ticket serves to track the progress towards getting the docking features in a PyPI release.
TODO:
- Map the docking features. (1)
- Decide how to release this (2)
(1): Most of the docking features are not yet mapped to python, so this should be done first.
@KinoxKlark suggests to use the docking
branch for that.
Currently pyimgui tracks 1.82 of DearImGui, so the docking branch should be matching the commit ocornut/imgui@2565945
(2): There are a few options here:
- Create a new PyPI package for the docking feature:
pyimgui-docking[glfw,...]
just like the main package. - Add docking as a 'feature' inside the main package:
pyimgui[glfw,docking]
(unsure if this is possible) - Always include docking features in PyPI.
rjtngit and jcs090218