* The Coverage object has a new method, .Coverage.branch_stats for getting simple branch information for a module. * The Coverage constructor<.Coverage> now has a plugins parameter for passing in plugin objects directly. * Many constant tests in if statements are now recognized as being optimized away. * The experimental sys.monitoring support now works for branch coverage if you are using Python 3.14.0 alpha 6 or newer. * A few small tweaks to the sys.monitoring support for Python 3.14. Please test! - Add setuptools77.patch to fix tests with setuptools 77 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coverage?expand=0&rev=139
22 lines
634 B
Diff
22 lines
634 B
Diff
From ba685fb8d06a2052c4916749539ef501b8080804 Mon Sep 17 00:00:00 2001
|
|
From: Ned Batchelder <ned@nedbatchelder.com>
|
|
Date: Sat, 22 Mar 2025 08:59:45 -0400
|
|
Subject: [PATCH] build: setuptools 77 doesn't like license classifiers. #1939
|
|
|
|
---
|
|
setup.py | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 9aa82bf91..8fcec5e2d 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -19,7 +19,6 @@
|
|
classifiers = """\
|
|
Environment :: Console
|
|
Intended Audience :: Developers
|
|
-License :: OSI Approved :: Apache Software License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|