Releases: pilcru/ghpythonremote
Releases · pilcru/ghpythonremote
v1.2.0
New
- Now fully compatible with Rhino 6.
Changes
- Revert using a special RPyC distribution, now explicitly using upstream.
- Upgrade to RPyC 4.1.0.
- Hide rpyc behind a special ghpythonremote import.
rpyc.utils
functionsdeliver
andobtain
are available asghpythonremote.deliver
andghpythonremote.obtain
;rpyc
should be imported withfrom ghpythonremote import rpyc
if ever needed. - Expand the environment path in CPython subprocess, trying to match what conda would do, helping Numpy finds its DLLs.
Fix
- Repair pip install command on recent pip with pip.main deprecated.
- Repair incompatibilities with IronPython 2.7.0.
- Repair incompatibilities with RPyC 4.1.0, using monkey-patched compatibilty fixes for IronPython.
- Remove unnecessary pip install parameters.
v1.1.4
v1.1.3
Fix
- Rename
async
import from rpyc toasync_
. - Bump rpyc version to pilcru/[email protected] to fix IronPython 2.7.0 dump bytes issues.
v1.1.2
v1.1.1
New
- Documented
obtain
anddeliver
features of rpyc to speedup remote array-like objects creation and retrieval.
Changes
- Use the v4.0.0 pre-release of rpyc to fix IronPython <-> CPython
str
unpickling issues. - Improve error messages when connection is lost.
Fix
- Repair the GH to python example, where argument passing (for the port configuration) was broken.