coverage 7.10.6__cp314-cp314t-musllinux_1_2_aarch64.whl → 7.11.0__cp314-cp314t-musllinux_1_2_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
coverage/version.py CHANGED
@@ -8,7 +8,7 @@ from __future__ import annotations
8
8
 
9
9
  # version_info: same semantics as sys.version_info.
10
10
  # _dev: the .devN suffix if any.
11
- version_info = (7, 10, 6, "final", 0)
11
+ version_info = (7, 11, 0, "final", 0)
12
12
  _dev = 0
13
13
 
14
14
 
@@ -31,19 +31,5 @@ def _make_version(
31
31
  return version
32
32
 
33
33
 
34
- def _make_url(
35
- major: int,
36
- minor: int,
37
- micro: int,
38
- releaselevel: str,
39
- serial: int = 0,
40
- dev: int = 0,
41
- ) -> str:
42
- """Make the URL people should start at for this version of coverage.py."""
43
- return "https://coverage.readthedocs.io/en/" + _make_version(
44
- major, minor, micro, releaselevel, serial, dev
45
- )
46
-
47
-
48
34
  __version__ = _make_version(*version_info, _dev)
49
- __url__ = _make_url(*version_info, _dev)
35
+ __url__ = f"https://coverage.readthedocs.io/en/{__version__}"
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coverage
3
- Version: 7.10.6
3
+ Version: 7.11.0
4
4
  Summary: Code coverage measurement for Python
5
5
  Home-page: https://github.com/nedbat/coveragepy
6
6
  Author: Ned Batchelder and 243 others
7
7
  Author-email: ned@nedbatchelder.com
8
8
  License: Apache-2.0
9
- Project-URL: Documentation, https://coverage.readthedocs.io/en/7.10.6
9
+ Project-URL: Documentation, https://coverage.readthedocs.io/en/7.11.0
10
10
  Project-URL: Funding, https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=pypi
11
11
  Project-URL: Issues, https://github.com/nedbat/coveragepy/issues
12
12
  Project-URL: Mastodon, https://hachyderm.io/@coveragepy
@@ -17,18 +17,18 @@ Classifier: Intended Audience :: Developers
17
17
  Classifier: Operating System :: OS Independent
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.9
21
20
  Classifier: Programming Language :: Python :: 3.10
22
21
  Classifier: Programming Language :: Python :: 3.11
23
22
  Classifier: Programming Language :: Python :: 3.12
24
23
  Classifier: Programming Language :: Python :: 3.13
25
24
  Classifier: Programming Language :: Python :: 3.14
25
+ Classifier: Programming Language :: Python :: 3.15
26
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
27
  Classifier: Programming Language :: Python :: Implementation :: PyPy
28
28
  Classifier: Topic :: Software Development :: Quality Assurance
29
29
  Classifier: Topic :: Software Development :: Testing
30
30
  Classifier: Development Status :: 5 - Production/Stable
31
- Requires-Python: >=3.9
31
+ Requires-Python: >=3.10
32
32
  Description-Content-Type: text/x-rst
33
33
  License-File: LICENSE.txt
34
34
  Provides-Extra: toml
@@ -75,13 +75,13 @@ Coverage.py runs on these versions of Python:
75
75
 
76
76
  .. PYVERSIONS
77
77
 
78
- * Python 3.9 through 3.14 rc2, including free-threading.
79
- * PyPy3 versions 3.9, 3.10, and 3.11.
78
+ * Python 3.10 through 3.15 alpha, including free-threading.
79
+ * PyPy3 versions 3.10 and 3.11.
80
80
 
81
81
  Documentation is on `Read the Docs`_. Code repository and issue tracker are on
82
82
  `GitHub`_.
83
83
 
84
- .. _Read the Docs: https://coverage.readthedocs.io/en/7.10.6/
84
+ .. _Read the Docs: https://coverage.readthedocs.io/en/7.11.0/
85
85
  .. _GitHub: https://github.com/nedbat/coveragepy
86
86
 
87
87
  **New in 7.x:**
@@ -93,7 +93,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
93
93
  multi-line exclusion patterns;
94
94
  function/class reporting;
95
95
  experimental support for sys.monitoring;
96
- dropped support for Python 3.7 and 3.8;
96
+ dropped support for Python up to 3.9;
97
97
  added ``Coverage.collect()`` context manager;
98
98
  improved data combining;
99
99
  ``[run] exclude_also`` setting;
@@ -131,7 +131,7 @@ Getting Started
131
131
  Looking to run ``coverage`` on your test suite? See the `Quick Start section`_
132
132
  of the docs.
133
133
 
134
- .. _Quick Start section: https://coverage.readthedocs.io/en/7.10.6/#quick-start
134
+ .. _Quick Start section: https://coverage.readthedocs.io/en/7.11.0/#quick-start
135
135
 
136
136
 
137
137
  Change history
@@ -139,7 +139,7 @@ Change history
139
139
 
140
140
  The complete history of changes is on the `change history page`_.
141
141
 
142
- .. _change history page: https://coverage.readthedocs.io/en/7.10.6/changes.html
142
+ .. _change history page: https://coverage.readthedocs.io/en/7.11.0/changes.html
143
143
 
144
144
 
145
145
  Code of Conduct
@@ -158,7 +158,7 @@ Contributing
158
158
  Found a bug? Want to help improve the code or documentation? See the
159
159
  `Contributing section`_ of the docs.
160
160
 
161
- .. _Contributing section: https://coverage.readthedocs.io/en/7.10.6/contributing.html
161
+ .. _Contributing section: https://coverage.readthedocs.io/en/7.11.0/contributing.html
162
162
 
163
163
 
164
164
  Security
@@ -186,7 +186,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
186
186
  :target: https://github.com/nedbat/coveragepy/actions/workflows/quality.yml
187
187
  :alt: Quality check status
188
188
  .. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
189
- :target: https://coverage.readthedocs.io/en/7.10.6/
189
+ :target: https://coverage.readthedocs.io/en/7.11.0/
190
190
  :alt: Documentation
191
191
  .. |kit| image:: https://img.shields.io/pypi/v/coverage
192
192
  :target: https://pypi.org/project/coverage/
@@ -195,7 +195,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
195
195
  :target: https://pypi.org/project/coverage/
196
196
  :alt: Python versions supported
197
197
  .. |license| image:: https://img.shields.io/pypi/l/coverage.svg
198
- :target: https://pypi.org/project/coverage/
198
+ :target: https://github.com/nedbat/coveragepy/blob/master/LICENSE.txt
199
199
  :alt: License
200
200
  .. |metacov| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/nedbat/8c6980f77988a327348f9b02bbaf67f5/raw/metacov.json
201
201
  :target: https://nedbat.github.io/coverage-reports/latest.html
@@ -2,47 +2,47 @@ coverage/__init__.py,sha256=1HV1dqISjELlkoq8Ds_mk6aT5fEtHbFaKy_ptdR8PYA,1063
2
2
  coverage/__main__.py,sha256=oiKt1zZs0uTI6YZPW06nTMjehD2rVLJBWDbLJwhIhe4,295
3
3
  coverage/annotate.py,sha256=S16UE-Dv1NFfINYPThpwGFR5uqKMqKjDrRkhvy5XVuY,3749
4
4
  coverage/bytecode.py,sha256=NX5uGxBXq32zmBqgVzbufcrwH4cA-vKiKcjLn9pGqS8,6319
5
- coverage/cmdline.py,sha256=qJ2ve4LHzVgdfJaUToQd4GrFaVodcr61yPlKzEO-KSI,36478
6
- coverage/collector.py,sha256=epPDV7Ib6GbOvXMkWTDvfLO94cycLIeQl4f7i1FsToI,19401
7
- coverage/config.py,sha256=zB9XqoAVvi3xTDt1xXIK54rAld-4RkYMBTiIJV_rKPM,25322
5
+ coverage/cmdline.py,sha256=LvxMo_fjtaSi_T_YDSWrDdo7BkEJA-cOdxotBPV1NRw,36574
6
+ coverage/collector.py,sha256=nssghop_0v_inj3a4iYjabYc_YrzqQMbhfdRiDivOnE,19297
7
+ coverage/config.py,sha256=Fy2HdEE0hsAzv1tE7vxSUSIPMu2N0qiiZcv9ZdIpDc0,25316
8
8
  coverage/context.py,sha256=3CmyB2hBXuH0AGFxMTAeNKemuEViQ3llqBW35YU8fn0,2432
9
- coverage/control.py,sha256=SJrc5nngKvw8uh8b9MwPtQshELWmHSyGdxgUdiZBo6s,54553
9
+ coverage/control.py,sha256=UQbt38hPH-Lla3xthuc9sHcCtIW_4qNIxtGJSF028kw,54609
10
10
  coverage/core.py,sha256=gg1nMVtyJVcWnoYWxTmt2P_BPEwoVJ4Rf07oQw77L7Q,4359
11
11
  coverage/data.py,sha256=AJXgZcZCB0vLL3vrgTrt8DgPoE3ZtDibbccSCSvcmVg,8125
12
- coverage/debug.py,sha256=HV9u2mbEeDG3-ADt-vC5vYfKo4K83CgDkzB7UXg5jXQ,21543
12
+ coverage/debug.py,sha256=vFrSItCbej4ysgHQkVV_wYUS59Tq47M9zqapGNM7CWA,21570
13
13
  coverage/disposition.py,sha256=z3SK69CMnDy6QOUfqBK5ZXisekNEYLz-vrkLmxaJ9uE,1895
14
- coverage/env.py,sha256=XpjMbK1iZ7IAsEDrVcd95wEpOVvLIEBpTrcWcpW50KA,7412
15
- coverage/exceptions.py,sha256=dQy1DUKvrFd3kvpz70Zqd6wZMEmO9h8aGGzcT9f96eI,1410
14
+ coverage/env.py,sha256=CTLYf21TWzySmR2fHmytHWVXLU-35nOFUSiRNCTVkqk,4970
15
+ coverage/exceptions.py,sha256=qHNw6v9C_nQVGqu2mBotk2X9M02c_lRAFrw8eOwmH2E,1428
16
16
  coverage/execfile.py,sha256=d6AlTGvQpmudAPevbpdU9E6D2hHksjOILRkFfWOobxQ,11991
17
17
  coverage/files.py,sha256=Rrlwqx5BM7LBEvs6DeNQgY9k4MpB1-UlqooP9Uj38m4,19355
18
- coverage/html.py,sha256=EgKz4KH5GyWmTBpIZGhppaD-jbcf6OHjidq_XCE04Aw,31061
18
+ coverage/html.py,sha256=fPPNqyBLv7DqTGFIP2jQpRxCOVZDaYW83FeidWHS_30,31382
19
19
  coverage/inorout.py,sha256=DbCfAL4lnNsr0UNRW63pmLKQsC2MevbV90ulUo5cUNo,24343
20
- coverage/jsonreport.py,sha256=uvPqxg5PcB8rDAQ9O8kIReycKWL4OPIVBj-snw6mpN8,6740
21
- coverage/lcovreport.py,sha256=G8EwiyHLYxzKOS5cAjWnII1UzNXlydAOjWf28VWGxZk,7752
22
- coverage/misc.py,sha256=qkeVnOODHXk0Ea04hAifMe9ZdksOlkAO2wsBjxGDCKo,11236
20
+ coverage/jsonreport.py,sha256=08v8x0EdR9MeMmbM39QIxRD_toiynp3ZvYmVOtK1Fcc,7067
21
+ coverage/lcovreport.py,sha256=RpGXEZlKpFj5HolgT38WL3BUU6RZdlrIFJRfLP3_Kv8,7872
22
+ coverage/misc.py,sha256=xd3XVZSfd-z3Nh3Py5YTK_O-2i2Td3au_IMfM-T8E4o,11289
23
23
  coverage/multiproc.py,sha256=4H4YQFz5tNxb6or6WLXfdnCHNM36aUK_IcMTw48flBo,4173
24
24
  coverage/numbits.py,sha256=-X58XJSBQqBf8BuUdH9tP0B3Igsr3zxOnuwZNHhPqbI,4671
25
- coverage/parser.py,sha256=y8NEeig8KJKUbd8tnF2i1UpVZDIpEwNeFA7uj9IFfuI,52146
26
- coverage/patch.py,sha256=BaeSKwgusuQlrwN75TU0RYscsCtzN0aWAs5dfweASmI,5536
27
- coverage/phystokens.py,sha256=GFdDGNWIwA-BNUMTtTXlnxVCKm3_Ry_7-45OI5ek99U,7595
25
+ coverage/parser.py,sha256=R_ueSgO9ncyP_dEkXng7AqeVRb0nENT4WOWWHzqAb_0,46226
26
+ coverage/patch.py,sha256=iSLYLGdbHet3AI31lvJmBTCiD4iaRyhjBkgE0asR29A,5565
27
+ coverage/phystokens.py,sha256=wt0CqznD6Wr_hw8zcccys9lyaBe1qqg0IxP9JgIRr8c,7448
28
28
  coverage/plugin.py,sha256=5PmGBtlpw7AUxFltglXGky43zWQPAxwCkU1JxD9_zkA,21507
29
29
  coverage/plugin_support.py,sha256=fOUgXtpAtwAZ4Og0PaIoigpbm1JEEzTccMR929w9g7I,10442
30
30
  coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
31
- coverage/python.py,sha256=guDlYbKq3pqYi0we2dc00tN4PlziYcaNbsGldUfkOgk,8566
31
+ coverage/python.py,sha256=YDp3LZW242KeuprqlK92HHbHU0B5iARndD5jbGrchHc,8584
32
32
  coverage/pytracer.py,sha256=PO0rDiMGO1_phAobtVOxwngSSwGxCbZ6WlwfAH4nld4,15316
33
33
  coverage/regions.py,sha256=Ht3vkoZg_tGpkldpOLzA7OSpA-HhfcFUYOq56BXGCBY,4498
34
34
  coverage/report.py,sha256=vP5HGdWtuz-9ZtBmizRo7wZ0joZ8NOnxSflprhuoEb8,10816
35
35
  coverage/report_core.py,sha256=xUPd0ghiRbDg8qMJmGMpq8bApCplSw7-LvGmBDC2FsI,4052
36
- coverage/results.py,sha256=gj2NYbef00kj1pV7gz6qP1g62K5WFLdM6dE60dQvaVY,13738
37
- coverage/sqldata.py,sha256=XdaL95Cmjavxpjo-0Nq4JfjV6QCErIFSLvNtK2DbHcI,45424
36
+ coverage/results.py,sha256=VxFJ-MpLAxBJ_-MjqNWOmOd0sZHPJ6KHFgKXRlrdcyw,16101
37
+ coverage/sqldata.py,sha256=hwxVKg4VJXdul2dxiQOhDVNM641UQsrZDMRFp9Jsxvo,45526
38
38
  coverage/sqlitedb.py,sha256=MBoLg2OSWZTXEd1_bEyn7AqFvI-vaCGBWDfIupm_v7E,10010
39
39
  coverage/sysmon.py,sha256=I-VF8bCB0QJV59Qps-qxzn5jEh7p9N7FU_5QZ0m21nc,17504
40
40
  coverage/templite.py,sha256=aOe06VntfmJ8PaOxdqWw3wdrS90cPFWz5bYE--xe8Dc,10810
41
41
  coverage/tomlconfig.py,sha256=rqHOI_4Y5hAgakcbYsainF3OswDBDRaBV3KbXyFasBA,7556
42
- coverage/tracer.cpython-314t-aarch64-linux-musl.so,sha256=sD84igePa5QU4YuG0f7FBMRC4dX2E5Seg7SIOderpPk,176208
42
+ coverage/tracer.cpython-314t-aarch64-linux-musl.so,sha256=42SSOCSIV4DZ6b7ZwYDlF_-H77rkC0xkbbU9L27A2q8,176208
43
43
  coverage/tracer.pyi,sha256=AMCDNOd1bRAAJP6mGh-BUimiz76C57lcrNqK7sxFkVU,1205
44
- coverage/types.py,sha256=SCQQJLd7iGQA4KXIuwgzbpEla2AS9Rz3Aa7UQdWeFS0,5761
45
- coverage/version.py,sha256=MdGS0qAH-G7MuFBIhBiX-t1s2ngqYvaBu9-IyBP51xc,1414
44
+ coverage/types.py,sha256=I6SjctiHjOK1pXpSLaXynp5Us0anXHm7uuax_kUq-L4,5598
45
+ coverage/version.py,sha256=wSZgTi5KP9Ldn7nBjnO5ZPCxE_rOlA4bHpOGcugEOx0,1092
46
46
  coverage/xmlreport.py,sha256=QlfMsYrFY6hu2knDByTiQtKlJlYfjKsVgI7C9uLK9qA,9869
47
47
  coverage/htmlfiles/coverage_html.js,sha256=Jyn7_pfQWsPwW1zLvSBKtXhsJzxnTw_zsBFgwNNWVJw,25474
48
48
  coverage/htmlfiles/favicon_32.png,sha256=vIEA-odDwRvSQ-syWfSwEnWGUWEv2b-Tv4tzTRfwJWE,1732
@@ -51,9 +51,9 @@ coverage/htmlfiles/keybd_closed.png,sha256=fZv4rmY3DkNJtPQjrFJ5UBOE5DdNof3mdeCZW
51
51
  coverage/htmlfiles/pyfile.html,sha256=pBOKalG4a2i_bPVy86cI8YcWFkEj8q0h42ds64-c_uE,6494
52
52
  coverage/htmlfiles/style.css,sha256=JgZwgi5fERxTNDvRzCGO6kjtl2EELLhSiWXh88C_unU,15643
53
53
  coverage/htmlfiles/style.scss,sha256=0EJdjlC1QFtZCu11hymeOna5u7voi3G5EkLjm9CfF5Y,20913
54
- coverage-7.10.6.dist-info/METADATA,sha256=QeoC-oO0qBC5tLXR-nBadMXNUnA66vCE9SWN1TMYUaU,8935
55
- coverage-7.10.6.dist-info/WHEEL,sha256=Rmj_1p8w6vs03sA3piwr0LDCnhshdZofyeLRZQ_Y0EI,114
56
- coverage-7.10.6.dist-info/entry_points.txt,sha256=9yTQ78MxN2yPai5yGQH_9pCCIAbx54RIC_6FWHzS3jg,123
57
- coverage-7.10.6.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
58
- coverage-7.10.6.dist-info/RECORD,,
59
- coverage-7.10.6.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
54
+ coverage-7.11.0.dist-info/METADATA,sha256=2qEkuQfH-VWe-QDZTTGhR3iqciR6T85ca8co4ruUXXo,8958
55
+ coverage-7.11.0.dist-info/WHEEL,sha256=Rmj_1p8w6vs03sA3piwr0LDCnhshdZofyeLRZQ_Y0EI,114
56
+ coverage-7.11.0.dist-info/entry_points.txt,sha256=9yTQ78MxN2yPai5yGQH_9pCCIAbx54RIC_6FWHzS3jg,123
57
+ coverage-7.11.0.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
58
+ coverage-7.11.0.dist-info/RECORD,,
59
+ coverage-7.11.0.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174