Bruno Postle
Bruno Postle
Thanks @Andrej730 I've created a new release: https://github.com/brunopostle/homemaker-addon/releases/tag/2024-09-01
@Andrej730 thanks, I can see that there is a lot to do to switch to an Extension, for reference: - [x] remove `blender_manifest.toml` from the legacy add-on zip archive for...
@moult yes it looks like I'm going to have to create a couple of wheels for my `molior` and `topologist` modules :(
Ah cool, so no need to create `setup.py` files
Yay, a blender 4.2 extension: https://github.com/brunopostle/homemaker-addon/releases/tag/2024-09-03
I was afraid that it might have this behaviour with wheels. It looks like I'll have to bump the version automatically and template the manifest file. There is no documentation...
..so it looks like when you install an extension, blender registers it as a python module, so relative path imports do work, but only when running in blender. ie. I...
🤔 ``` python try: import .molior except ImportError: import molior ```
🧐 ``` python try: import molior except ImportError: import .molior ```