AraHaan
AraHaan
Speaking of how py2exe embeds the python interpreter I been working and experimenting on a way to make py2exe work when creating single file exe's for Python 3.12+. How I...
I would go for removing the drop down and replace it with a multi select list box alternative- and only list the frameworks supported by the latest version of the...
or just hard code a possible order, where frameworks with ``framework`` in their name is 1st, ``core`` 2nd, and ``standard`` being last.
hmm Or an EVEN better idea; what about a multi-select combo box? Does multi-select combo boxes exist though? Even on the Windows API??? However I still think a multi-select listbox...
Hmmm this is where class dicts with an entry of the downloaded dependencies names would work so then it can bite the issue about extra downloads. And then the install...
@chromano Why not make your package also work on non-wheels, contains c extensions, or just completely written in pure python. And then have pip use that for parallel downloads and...
> As per [dotnet/ClangSharp#571](https://github.com/dotnet/ClangSharp/issues/571) you need to explicitly handle each header, namely by adding the right files to handle `um/mionidumpset.h` here: https://github.com/terrafx/terrafx.interop.windows/tree/main/generation/Windows/um Alright added it manually, just need to figure...
> You shouldn’t exclude types like that. Typically whole headers are generated at once to avoid future breaks and potential issues Sadly in the case of this header the ``MINIDUMP_CALLBACK_INFORMATION``...
Ah I see, it's a warning that gets displayed as an error in Visual Studio.
``` terrafx.interop.windows\sources\Interop\Windows\Windows\um\minidumpapiset\MINIDUMP_THREAD_CALLBACK.cs(19,20): error CS0723: Cannot declare a variable of static type 'CONTEXT' terrafx.interop.windows\sources\Interop\Windows\Windows\um\minidumpapiset\MINIDUMP_THREAD_EX_CALLBACK.cs(19,20): error CS0723: Cannot declare a variable of static type 'CONTEXT' ``` I guess time to try ``nint``...