paulbareilCodotek
paulbareilCodotek
I was able to debug the Python and Matlab code. I haven't found the exact source of the problem yet, still trying to wrap my head around the way it...
Got it. The `self.process.subsasgn(self, access, value)` line actually returns the new modified object. As in the Matlab object we have to return the object itself. ` function obj = set.attribute(obj,...
Yes that seems to be the case. I will investigate a little further on the Matlab side to be sure to understand the problem correctly. You built such a good...
ok, I made some quick Matlab tests If you have the following class in Matlab `classdef TestObject properties attribute = 123456; ref_obj; end methods function obj = set.attribute(obj, value) obj.attribute...
I have the exact same problem. ### Environment: Ray Version: 2.10.0 Operating System: Windows 10 Python Version: 3.10.13 ## requirements.txt ray==3.10.13 psutil==5.9.8 setproctitle==1.3.3 ## Reproduction scripts Here is my test...
If I modify my path using this code ```python sys.executable = os.path.join(sys.prefix, 'Scripts', 'python.exe') os.environ["RAY_PYTHON"] = os.path.join(sys.prefix, 'Scripts', 'python.exe') ``` and modify datas to add the python.exe in the spec...
If I copy the whole virtual environment to _internals with the Scripts folder and the pyvenv.cfg, or I modify the spec file as below (which is the same). It almost...