- update to 1.4.1:

* Dropped support for Python 3.7
  * Fix loading scripts with non-UTF-8 encodings.
  * Print output when a subprocess runner with `check=True` fails
    was missing.
  * Added type-hinting for all types,
    `pytest_console_scripts.ScriptRunner`
    can now be used to hint the `script_runner` fixture.
  * Added support for the `shell` and `check` keywords for in-
    process mode.
  * Passing command arguments in `*args` is now deprecated and
    will raise warnings.
  * Dropped support for Python 3.6
  * Install-time dependencies have been fixed.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-console-scripts?expand=0&rev=20
This commit is contained in:
2023-06-01 10:16:12 +00:00
committed by Git OBS Bridge
parent 1cccb5bf44
commit 2244b91d93
4 changed files with 24 additions and 7 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Thu Jun 1 10:15:24 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.4.1:
* Dropped support for Python 3.7
* Fix loading scripts with non-UTF-8 encodings.
* Print output when a subprocess runner with `check=True` fails
was missing.
* Added type-hinting for all types,
`pytest_console_scripts.ScriptRunner`
can now be used to hint the `script_runner` fixture.
* Added support for the `shell` and `check` keywords for in-
process mode.
* Passing command arguments in `*args` is now deprecated and
will raise warnings.
* Dropped support for Python 3.6
* Install-time dependencies have been fixed.
-------------------------------------------------------------------
Mon Mar 21 01:22:50 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>