./devel/py-execnet, Rapid multi-Python deployment

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.0.2nb1, Package name: py311-execnet-2.0.2nb1, Maintainer: pkgsrc-users

execnet provides carefully tested means to ad-hoc interact with Python
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.


Required to run:
[devel/py-setuptools] [devel/py-apipkg] [lang/python37]

Required to build:
[pkgtools/cwrappers] [devel/py-setuptools_scm]

Master sites:

Filesize: 157.322 KB

Version history: (Expand)


CVS history: (Expand)


   2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | Package updated
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation

This follows the recommended bootstrap method (flit_core, build, installer).

However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
   2023-07-18 10:18:34 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-execnet: updated to 2.0.2

2.0.2 (2023-07-09)

Re-release without code changes, just to include tox.ini into the source \ 
distribution.

2.0.1 (2023-07-08)

Re-release without code changes, just to include docs and tests into the source \ 
distribution.

2.0.0 (2023-07-06)

Removed support for Python < 3.7.
Applied pyupgrade --py37-plus.
Minimal mypy fixes and dropped Python 2 support code.
Migrated packaging to hatch.
Dropped deprecated APIs of old makegateway names.
Removed py testing dependency.
Explicitly pass encoding when opening files in the gateway to get rid of \ 
warnings when using PYTHONWARNDEFAULTENCODING=1.
Fixed error when loading source code files from a path containing non-ascii \ 
characters.
   2022-01-13 20:31:25 by Thomas Klausner | Files touched by this commit (43)
Log message:
*: setuptools_scm: switch to versioned_dependencies
   2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595)
Log message:
*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

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
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2021-06-13 19:28:40 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-execnet: updated to 1.9.0

1.9.0 (2021-06-13)
------------------
* Removed the ``apipkg`` dependency.
   2021-02-09 10:03:38 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-execnet: updated to 1.8.0

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.