python-releases/remove-icecream.patch

11 lines
310 B
Diff
Raw Normal View History

- Delete migrate-to-pytest.patch - Delete remove-mock.patch - Add remove-icecream.patch - Update to 2.1.1: * [Bug]: Fix up an internal utility which monkeypatches a Sphinx/docutils internal, so that it accepts arbitrary args/kwargs instead of exploding on newer Sphinxes. - 2.0.1: * [Bug]: Fix up an internal utility which monkeypatches a Sphinx/docutils internal, so that it accepts arbitrary args/kwargs instead of exploding on newer Sphinxes. - 2.1.0: * [Feature]: Allow controlling the name of your development branch for source code links (eg “Next 1.x feature release” section headers) via the new releases_development_branch config option. * [Feature]: Add a new configuration setting, releases_supported_versions, allowing you to limit how many “Next 1.x feature release” (or bugfix, etc) sections appear at the top of your changelog. - 2.0.0: * [Bug]: Don’t make tmpdirs in releases.util.make_app when being given explicit directory args. * [Bug]: Changelog transformation sometimes failed to occur when running under a ‘single HTML file’ Sphinx builder (eg singlehtml), which resulted in ‘unknown node’ errors. This has been fixed. * [Support]: Migrated the test suite to use pytest-relaxed (and thus pytest) instead of spec. * [Support]: Dropped support for Sphinx <4. We tried to support 1.8+, but too many transitive dependencies have clearly “moved on” and cause various cells in the test matrix to fail hard. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-releases?expand=0&rev=21
2023-05-12 10:19:39 +02:00
Index: releases-2.1.1/tests/conftest.py
===================================================================
--- releases-2.1.1.orig/tests/conftest.py
+++ releases-2.1.1/tests/conftest.py
@@ -1,5 +0,0 @@
-from icecream import ic, install as install_ic
-
-
-install_ic()
-ic.configureOutput(includeContext=True)