Mark McKay kitfox
  • Joined on 2015-01-03
Mark McKay opened issue blender/blender#127937 2024-09-21 03:15:24 +02:00
Extensions should provide and option to list required wheels instead of bundling them
Mark McKay commented on issue blender/blender#127632 2024-09-21 01:02:34 +02:00
How do I download wheels for the allosaurus python module?

I've not had a chance to look at the script yet, but if the bundled wheels are Python version specific, does this mean I'm going to have to create new extensions every time Blender changes it's…

Mark McKay commented on issue blender/blender#127632 2024-09-20 05:25:10 +02:00
How do I download wheels for the allosaurus python module?

Looks like this might actually not be possible. Hopefully that will change in the future.

https://discuss.python.org/t/how-can-i-download-all-the-wheels-i-need-for-multiple-platforms/64466/6

Mark McKay commented on issue blender/blender#127632 2024-09-19 19:27:03 +02:00
How do I download wheels for the allosaurus python module?

I think cibuildwheel is for building wheel distributions, not downloading them.

Mark McKay commented on issue blender/blender#127632 2024-09-18 05:05:10 +02:00
How do I download wheels for the allosaurus python module?

pkginfo is not very helpful because it is not recursive, nor does it return the different binaries for different platforms. It's not much different than just looking at the requirements.txt…

Mark McKay commented on issue blender/blender#127632 2024-09-17 12:47:39 +02:00
How do I download wheels for the allosaurus python module?

For Linux, do I need both ARM64 and x86? Running pip on my Linux distro is only downloading the x86. Do I need wheels for both platforms?

Mark McKay commented on issue blender/blender#127632 2024-09-17 11:38:26 +02:00
How do I download wheels for the allosaurus python module?

The other big problem with this new system is it is now much more inconvenient to write code with 3rd party modules. I can't just pip install them anymore and then write some test code in the…

Mark McKay commented on issue blender/blender#127632 2024-09-17 09:58:18 +02:00
How do I download wheels for the allosaurus python module?

From my research, there's no easy way to download wheels for multiple platforms. I happen to have a Mac so I was able to generate some Mac specific wheels there, but I'm currently setting up a…

Mark McKay commented on issue blender/blender#127632 2024-09-16 16:14:53 +02:00
How do I download wheels for the allosaurus python module?

I'm trying to download these, but it's not easy. These dependencies themselves have dependencies and when I download those I get incompatible versions, Windows binaries mixed in and multiple…

Mark McKay commented on issue blender/blender#127632 2024-09-15 08:18:26 +02:00
How do I download wheels for the allosaurus python module?

I don't need just the allosaurus wheel. I need all it's dependencies too. I'm trying to create an addon which I can then distribute to all platforms..

When I look through all the wheels…

Mark McKay opened issue blender/blender#127632 2024-09-14 22:44:10 +02:00
How do I download wheels for the allosaurus python module?
Mark McKay commented on issue blender/blender#126751 2024-08-29 04:13:06 +02:00
Cannot import 3rd party modules added to python

One drawback I'm having with wheels is that I'm forced to add a lot of additional libraries that I didn't have to before. Gruut comes with several language packs, and now I have to bundle every…

Mark McKay commented on issue blender/blender#126751 2024-08-29 04:01:20 +02:00
Cannot import 3rd party modules added to python

That webpage only lists GPL and CC0 licenses. Why not MIT, BSD, LGPL and Apache as well? I've had users contact me in the past because the GPL scares off a lot of people. A lot of people seem…

Mark McKay commented on issue blender/blender#126751 2024-08-28 00:48:36 +02:00
Cannot import 3rd party modules added to python

To include wheels, I need to use the new blender_manifest.toml to organize my addon. But that will require me to change the licensing to GPL 3.0. I'd rather not do that. Why is Blender forcing…

Mark McKay commented on issue blender/blender#126751 2024-08-27 09:28:03 +02:00
Cannot import 3rd party modules added to python

I think that those modules that it depends on must be in whatever directory modules were installed to before I changed the permissions. Is there any way to have Blender looks for modules in that…

Mark McKay commented on issue blender/blender#126751 2024-08-27 09:19:27 +02:00
Cannot import 3rd party modules added to python

I changed the permissions of the site-packages directory. While this did finally allow me to install the library where Blender can find it, pip seems to not be recursively installing the…