2024-04-10 18:26:24 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-execnet: updated to 2.1.1
2.1.1
Fixed regression in 2.1.0 where the strconfig argument to load/loads is ignored.
|
2024-04-06 07:46:02 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-execnet: updated to 2.1.0
2.1.0 (2024-04-05)
Added main_thread_only execmodel which is derived from the thread execmodel and \
only executes remote_exec calls in the main thread.
Callers of remote_exec must use the returned channel to wait for a task to \
complete before they call remote_exec again, otherwise the remote_exec call will \
fail with a concurrent remote_exec would cause deadlock error.
Also fixed init_popen_io to use closefd=False for shared stdin and stdout file \
descriptors, preventing Bad file descriptor errors triggered by \
test_stdouterrin_setnull.
The library is now typed and the typing is exposed to type-checkers.
Re-exported Gateway, Channel, DumpError and LoadError from execnet. The \
constructors are private.
Fixed GatewayBase.join() timeout argument getting ignored.
Removed support for Python 3.7.
Added official support for Python 3.12.
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
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) | |
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) | |
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) | |
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.
|