Marcelo Duarte

Results 407 comments of Marcelo Duarte

> I have only seen this issue so far on Python installs where a lot of packages are installed. It does not seem to be Windows-specific, as I noticed a...

> I can initiate a PR for this Feel free to contribute!

I can't answer this question for you, but there's a gist that might be able to: https://gist.github.com/mgrandi/0cf9e603135eda176534 If u need cx_Logging for py3.10 use: pip install --extra-index-url https://marcelotduarte.github.io/packages/ cx_Logging

> I also see that there's a fallback to CamelCase methods in there ... but the gist still won't work You can convert to sneak, SessionChanged become session_changed.... > The...

cx_Freeze is built using pyproject, but does not support the use of it to build_exe. #1491 is a similar issue. In a near future, we support it.

Are you trying to build cx_Freeze or a test project? For cx_Freeze, you must use --no-build-isolation in MinGW. And, for MSYS2 you can get binary package using [mingw-w64-python-cx-freeze](https://packages.msys2.org/base/mingw-w64-python-cx-freeze). Also, development...

> Development packages for MSYS2 is returning 404 on page you suggest Fixed. > currently cx_Freeze seems not compatible with PEP517 build frontends Building cx_Freeze is compatible with PEP517/518. The...

I have not tested this, but, if your intention it to use setuptools find_package this [snippet](https://setuptools.pypa.io/en/latest/userguide/datafiles.html) should match this issue: ``` from setuptools import find_packages setup( # ..., packages=find_packages(where="src"), package_dir={"":...

Currently, a workaround is used. Please check #203

> Is there a way this could be automatically be done via hooks Yes, that is possible. I'll take a look. I think that you can, as a workaround, set...