11
0
Commit Graph

16 Commits

Author SHA256 Message Date
2e871f39b6 - update to 2.1.1:
* Fixed regression in 2.1.0 where the strconfig argument to
    load/loads is ignore

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=26
2024-04-27 09:01:12 +00:00
1714fd6a52 - update to 2.1.0:
* #243: 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. The main_thread_only
    execmodel provides solutions for #96 and
    pytest-dev/pytest-xdist#620 (pending a new pytest-xdist
    release).
  * 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.
  * Current working directory is now restored when calling ``script/socketserver.py``.
- add fix_apipkg.patch -- fixes tests with apipkg > 1.4.0
- Install a generated documentation
- Build documentation with Sphinx
- Initial packaging execnet 1.1 for openSUSE

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=24
2024-04-07 09:01:12 +00:00
61454272ff - update to 2.0.2:
* 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 (#195).
  * Fixed error when loading source code files from a path
    containing non-ascii characters.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=22
2023-07-24 20:15:31 +00:00
7ee74039de Accepting request 1082401 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1082401
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=20
2023-04-24 09:17:42 +00:00
618630d234 - Remove python_module macro definition
- Add python-py dependency required because python-pytest removed that
  dependency

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=18
2022-11-29 16:59:21 +00:00
2a0a3dd09f Accepting request 940104 from home:bnavigator:python-rpm-macros
- update to 1.9.0
  * Removed the apipkg dependency.
- Release 1.8.1
  * Update calls of threading.Event.isSet() to
    threading.Event.is_set(), which avoids a deprecation warning
    with Python 3.10.

OBS-URL: https://build.opensuse.org/request/show/940104
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=17
2021-12-14 13:04:51 +00:00
14119d521b Accepting request 868766 from home:dirkmueller:branches:devel:languages:python:pytest
- update to 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
  * Current working directory is now restored when calling ``script/socketserver.py``.

OBS-URL: https://build.opensuse.org/request/show/868766
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=15
2021-02-02 22:39:35 +00:00
Tomáš Chvátal
80529bc897 - Update to 1.7.1:
* #108: Revert linecache optimization introduced in 1.7.0 which broke remote execution.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=13
2019-08-30 01:13:03 +00:00
Tomáš Chvátal
4276199f55 - Update to 1.7:
* Fix flaky hangs

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=11
2019-08-12 15:45:14 +00:00
Tomáš Chvátal
c7b7203bae - Update to 1.6.1:
* Internal change to avoid using deprecated funcargs name in pytest 5+.
- Obsoletes pytest4.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=9
2019-07-24 08:59:40 +00:00
Tomáš Chvátal
5329aaf214 - Add patch to play with new pytest rather than restricting:
* pytest4.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=8
2019-07-19 09:16:27 +00:00
40ffffba77 - use pytest4 to run testsuite, pytest-5 for testsuite isn't supported
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=7
2019-07-18 09:28:22 +00:00
592a15e888 - use pytest4 to run testsuite
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=6
2019-07-18 08:47:40 +00:00
Tomáš Chvátal
8d99e41014 - Update to 1.6.0:
* ``execnet`` no longer supports Python 2.6 and 3.3 (#85). 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``.
- Remove pytest4.patch merged upstream
- Remove fix_apipkg.patch merged upstream

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=4
2019-04-01 08:34:17 +00:00
Tomáš Chvátal
2ec7bc5d9c - Add patch to fix build with pytest 4 and newer:
* pytest4.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=2
2019-02-12 14:32:16 +00:00
cceb57bb85 osc copypac from project:devel:languages:python package:python-execnet revision:14
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-execnet?expand=0&rev=1
2018-08-22 14:51:02 +00:00