coverage 7.10.6__cp314-cp314-macosx_11_0_arm64.whl → 7.11.0__cp314-cp314-macosx_11_0_arm64.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
@@ -1,47 +1,47 @@
1
- coverage-7.10.6.dist-info/RECORD,,
2
- coverage-7.10.6.dist-info/WHEEL,sha256=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,136
3
- coverage-7.10.6.dist-info/entry_points.txt,sha256=9yTQ78MxN2yPai5yGQH_9pCCIAbx54RIC_6FWHzS3jg,123
4
- coverage-7.10.6.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
5
- coverage-7.10.6.dist-info/METADATA,sha256=QeoC-oO0qBC5tLXR-nBadMXNUnA66vCE9SWN1TMYUaU,8935
6
- coverage-7.10.6.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
7
- coverage/patch.py,sha256=BaeSKwgusuQlrwN75TU0RYscsCtzN0aWAs5dfweASmI,5536
8
- coverage/misc.py,sha256=qkeVnOODHXk0Ea04hAifMe9ZdksOlkAO2wsBjxGDCKo,11236
1
+ coverage-7.11.0.dist-info/RECORD,,
2
+ coverage-7.11.0.dist-info/WHEEL,sha256=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,136
3
+ coverage-7.11.0.dist-info/entry_points.txt,sha256=9yTQ78MxN2yPai5yGQH_9pCCIAbx54RIC_6FWHzS3jg,123
4
+ coverage-7.11.0.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
5
+ coverage-7.11.0.dist-info/METADATA,sha256=2qEkuQfH-VWe-QDZTTGhR3iqciR6T85ca8co4ruUXXo,8958
6
+ coverage-7.11.0.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
7
+ coverage/patch.py,sha256=iSLYLGdbHet3AI31lvJmBTCiD4iaRyhjBkgE0asR29A,5565
8
+ coverage/misc.py,sha256=xd3XVZSfd-z3Nh3Py5YTK_O-2i2Td3au_IMfM-T8E4o,11289
9
9
  coverage/files.py,sha256=Rrlwqx5BM7LBEvs6DeNQgY9k4MpB1-UlqooP9Uj38m4,19355
10
- coverage/phystokens.py,sha256=GFdDGNWIwA-BNUMTtTXlnxVCKm3_Ry_7-45OI5ek99U,7595
11
- coverage/lcovreport.py,sha256=G8EwiyHLYxzKOS5cAjWnII1UzNXlydAOjWf28VWGxZk,7752
12
- coverage/config.py,sha256=zB9XqoAVvi3xTDt1xXIK54rAld-4RkYMBTiIJV_rKPM,25322
13
- coverage/version.py,sha256=MdGS0qAH-G7MuFBIhBiX-t1s2ngqYvaBu9-IyBP51xc,1414
14
- coverage/env.py,sha256=XpjMbK1iZ7IAsEDrVcd95wEpOVvLIEBpTrcWcpW50KA,7412
10
+ coverage/phystokens.py,sha256=wt0CqznD6Wr_hw8zcccys9lyaBe1qqg0IxP9JgIRr8c,7448
11
+ coverage/lcovreport.py,sha256=RpGXEZlKpFj5HolgT38WL3BUU6RZdlrIFJRfLP3_Kv8,7872
12
+ coverage/config.py,sha256=Fy2HdEE0hsAzv1tE7vxSUSIPMu2N0qiiZcv9ZdIpDc0,25316
13
+ coverage/version.py,sha256=wSZgTi5KP9Ldn7nBjnO5ZPCxE_rOlA4bHpOGcugEOx0,1092
14
+ coverage/env.py,sha256=CTLYf21TWzySmR2fHmytHWVXLU-35nOFUSiRNCTVkqk,4970
15
15
  coverage/sysmon.py,sha256=I-VF8bCB0QJV59Qps-qxzn5jEh7p9N7FU_5QZ0m21nc,17504
16
16
  coverage/templite.py,sha256=aOe06VntfmJ8PaOxdqWw3wdrS90cPFWz5bYE--xe8Dc,10810
17
- coverage/results.py,sha256=gj2NYbef00kj1pV7gz6qP1g62K5WFLdM6dE60dQvaVY,13738
17
+ coverage/results.py,sha256=VxFJ-MpLAxBJ_-MjqNWOmOd0sZHPJ6KHFgKXRlrdcyw,16101
18
18
  coverage/plugin_support.py,sha256=fOUgXtpAtwAZ4Og0PaIoigpbm1JEEzTccMR929w9g7I,10442
19
19
  coverage/numbits.py,sha256=-X58XJSBQqBf8BuUdH9tP0B3Igsr3zxOnuwZNHhPqbI,4671
20
20
  coverage/regions.py,sha256=Ht3vkoZg_tGpkldpOLzA7OSpA-HhfcFUYOq56BXGCBY,4498
21
- coverage/control.py,sha256=SJrc5nngKvw8uh8b9MwPtQshELWmHSyGdxgUdiZBo6s,54553
21
+ coverage/control.py,sha256=UQbt38hPH-Lla3xthuc9sHcCtIW_4qNIxtGJSF028kw,54609
22
22
  coverage/sqlitedb.py,sha256=MBoLg2OSWZTXEd1_bEyn7AqFvI-vaCGBWDfIupm_v7E,10010
23
- coverage/html.py,sha256=EgKz4KH5GyWmTBpIZGhppaD-jbcf6OHjidq_XCE04Aw,31061
24
- coverage/cmdline.py,sha256=qJ2ve4LHzVgdfJaUToQd4GrFaVodcr61yPlKzEO-KSI,36478
25
- coverage/collector.py,sha256=epPDV7Ib6GbOvXMkWTDvfLO94cycLIeQl4f7i1FsToI,19401
23
+ coverage/html.py,sha256=fPPNqyBLv7DqTGFIP2jQpRxCOVZDaYW83FeidWHS_30,31382
24
+ coverage/cmdline.py,sha256=LvxMo_fjtaSi_T_YDSWrDdo7BkEJA-cOdxotBPV1NRw,36574
25
+ coverage/collector.py,sha256=nssghop_0v_inj3a4iYjabYc_YrzqQMbhfdRiDivOnE,19297
26
26
  coverage/__init__.py,sha256=1HV1dqISjELlkoq8Ds_mk6aT5fEtHbFaKy_ptdR8PYA,1063
27
27
  coverage/core.py,sha256=gg1nMVtyJVcWnoYWxTmt2P_BPEwoVJ4Rf07oQw77L7Q,4359
28
28
  coverage/pytracer.py,sha256=PO0rDiMGO1_phAobtVOxwngSSwGxCbZ6WlwfAH4nld4,15316
29
- coverage/types.py,sha256=SCQQJLd7iGQA4KXIuwgzbpEla2AS9Rz3Aa7UQdWeFS0,5761
29
+ coverage/types.py,sha256=I6SjctiHjOK1pXpSLaXynp5Us0anXHm7uuax_kUq-L4,5598
30
30
  coverage/annotate.py,sha256=S16UE-Dv1NFfINYPThpwGFR5uqKMqKjDrRkhvy5XVuY,3749
31
- coverage/sqldata.py,sha256=XdaL95Cmjavxpjo-0Nq4JfjV6QCErIFSLvNtK2DbHcI,45424
32
- coverage/tracer.cpython-314-darwin.so,sha256=wY-C6w5PJ300FKZsmiS35Ozxh7Lm0LVrYh38DRfAm_M,56560
31
+ coverage/sqldata.py,sha256=hwxVKg4VJXdul2dxiQOhDVNM641UQsrZDMRFp9Jsxvo,45526
32
+ coverage/tracer.cpython-314-darwin.so,sha256=yd1FhcfCnozv_cYSK0wmorUA_mmiFQqqoFhY9i_DWkM,56560
33
33
  coverage/disposition.py,sha256=z3SK69CMnDy6QOUfqBK5ZXisekNEYLz-vrkLmxaJ9uE,1895
34
- coverage/parser.py,sha256=y8NEeig8KJKUbd8tnF2i1UpVZDIpEwNeFA7uj9IFfuI,52146
34
+ coverage/parser.py,sha256=R_ueSgO9ncyP_dEkXng7AqeVRb0nENT4WOWWHzqAb_0,46226
35
35
  coverage/context.py,sha256=3CmyB2hBXuH0AGFxMTAeNKemuEViQ3llqBW35YU8fn0,2432
36
36
  coverage/xmlreport.py,sha256=QlfMsYrFY6hu2knDByTiQtKlJlYfjKsVgI7C9uLK9qA,9869
37
- coverage/debug.py,sha256=HV9u2mbEeDG3-ADt-vC5vYfKo4K83CgDkzB7UXg5jXQ,21543
38
- coverage/python.py,sha256=guDlYbKq3pqYi0we2dc00tN4PlziYcaNbsGldUfkOgk,8566
37
+ coverage/debug.py,sha256=vFrSItCbej4ysgHQkVV_wYUS59Tq47M9zqapGNM7CWA,21570
38
+ coverage/python.py,sha256=YDp3LZW242KeuprqlK92HHbHU0B5iARndD5jbGrchHc,8584
39
39
  coverage/tracer.pyi,sha256=AMCDNOd1bRAAJP6mGh-BUimiz76C57lcrNqK7sxFkVU,1205
40
40
  coverage/plugin.py,sha256=5PmGBtlpw7AUxFltglXGky43zWQPAxwCkU1JxD9_zkA,21507
41
41
  coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
42
- coverage/exceptions.py,sha256=dQy1DUKvrFd3kvpz70Zqd6wZMEmO9h8aGGzcT9f96eI,1410
42
+ coverage/exceptions.py,sha256=qHNw6v9C_nQVGqu2mBotk2X9M02c_lRAFrw8eOwmH2E,1428
43
43
  coverage/inorout.py,sha256=DbCfAL4lnNsr0UNRW63pmLKQsC2MevbV90ulUo5cUNo,24343
44
- coverage/jsonreport.py,sha256=uvPqxg5PcB8rDAQ9O8kIReycKWL4OPIVBj-snw6mpN8,6740
44
+ coverage/jsonreport.py,sha256=08v8x0EdR9MeMmbM39QIxRD_toiynp3ZvYmVOtK1Fcc,7067
45
45
  coverage/report_core.py,sha256=xUPd0ghiRbDg8qMJmGMpq8bApCplSw7-LvGmBDC2FsI,4052
46
46
  coverage/bytecode.py,sha256=NX5uGxBXq32zmBqgVzbufcrwH4cA-vKiKcjLn9pGqS8,6319
47
47
  coverage/tomlconfig.py,sha256=rqHOI_4Y5hAgakcbYsainF3OswDBDRaBV3KbXyFasBA,7556