All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
1.8.0
* Dropped support for Python 3.4.
* Fixed internal leak that should make
``execnet`` execute remote code in the main thread more often; previously it would sometimes
spawn a thread to execute a ``remote_exec`` call, even when the caller
didn't issue multiple ``remote_exec`` calls at the same time. Some frameworks require code
to execute in the main thread, so the previous behavior would break them on occasion.
* Current working directory is now
restored when calling ``script/socketserver.py``. The script now also loops by default
when called from the command-line.
1.6.0:
* execnet no longer supports Python 2.6 and 3.3. Users of those Python versions
using a recent enough pip should not be affected, as pip will only install
1.5.0 for them.
* Update test suite to support pytest>4.
1.5.0
-----
- support shell escaping in python pathnames of popen.
Eugene Ciurana discovered that execnet breaks if you use
pathnames with spaces in a "python=" part of a spec.
We now use shlex.split to split the string. There is a
potential for regressions if you used quote or escape
sequences as part of your python command.
- Only insert importdir into sys.path if it is not already in the path.
This prevents a bug when using enum34 with python 3.6 and
pytest-xdist.
The issue is that enum34 installs an 'enum' module in site-packages
which is normally shadowed by the stdlib version of enum, however in
gateway_bootstrap.py site-packages is added at the front the the
search path. This means on the workers enum34 is hit for import enum
which in turn causes import re to fail (as it makes use of the new
enum features in 3.6).
- fix 49 - use inspect.getfullargspec if possible to avoid deprecationwarnings
- fix 56 - use partials in safe_terminate to avoid a bad carried binding
- fix spec parsing on Windows due to path containing '\' characters.
interpreters across version, platform and network barriers. It provides
a minimal and fast API targetting the following uses:
* distribute tasks to local or remote processes
* write and deploy hybrid multi-process applications
* write scripts to administer multiple hosts
Features
* zero-install bootstrapping: no remote installation required!
* flexible communication: send/receive as well as callback/queue mechanisms
supported
* simple serialization of python builtin types (no pickling)
* grouped creation and robust termination of processes
* well tested between CPython 2.6-3.X, Jython 2.5.1 and PyPy 2.2 interpreters.
* interoperable between Windows and Unix-ish systems.
* integrates with different threading models, including standard os threads,
eventlet and gevent based systems.