enthought / pyface

pyface: traits-capable windowing framework
Other
104 stars 55 forks source link

Update documentation for Pyface 8.0.0 #1242

Closed corranwebster closed 1 year ago

corranwebster commented 1 year ago

Does what it says

mdickinson commented 1 year ago

Code changes look plausible (needless to say, I didn't examine all 200k changed lines); docs look good locally, and search works for me.

Incidentally, the first thing I searched for was ImageField, and I was a bit surprised not to get a hit for that. (I did get results about IImageField, MImageField, etc, but nothing about ImageField specifically.)

corranwebster commented 1 year ago

(I did get results about IImageField, MImageField, etc, but nothing about ImageField specifically.)

We currently skip documenting the pyface.ui.* modules so the concrete implementation classes don't get picked up. This is due to Sphinx actually importing the modules and python being very unhappy when you have both Qt and Wx running in process.

mdickinson commented 1 year ago

Ah yes, I remember encountering this issue before. Thanks!