11
0

- 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
This commit is contained in:
2023-07-24 20:15:31 +00:00
committed by Git OBS Bridge
parent 7ee74039de
commit 61454272ff
4 changed files with 26 additions and 14 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Jul 24 20:13:41 UTC 2023 - Dirk Müller <dmueller@suse.com>
- 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.
-------------------------------------------------------------------
Fri Apr 21 12:24:48 UTC 2023 - Dirk Müller <dmueller@suse.com>