Hal
Hal
This PR wants to improve working with embedded python scanning rez-plugins, allow us to use [Pyinstaller ](https://github.com/pyinstaller/pyinstaller) and [PyOxidizer](https://github.com/indygreg/PyOxidizer) to make rez as a single application to deploy. Below is...
This PR is try to fix #1665
We get a `Access denied` issue when using rez cp on our windows virtual ci machine. I found some similar issue. https://github.com/conan-io/conan/issues/6560 **Environment** * Windows 10 * 2.113 + and...
This PR is add a new function to allow get providers from entry points. ```python # setup.py setup( name="notfiers_xxx_provider", package_dir={"": "."}, packages=find_packages("."), entry_points={ "notfiers": ["provider1= notfiers_xxx_provider.Pushover2"], ["provider2= notfiers_xxx_provider.Pushover2"], }, )...