coverage 7.10.6__cp310-cp310-win_amd64.whl → 7.11.0__cp310-cp310-win_amd64.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 249 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=p80cmYrM35VlYk07TtKV90tz0FyOH7HFS_mMqqlkQO8,1103
2
2
  coverage/__main__.py,sha256=M2jcqCZIu_rkmoO4CKgwElX084u6SHdZfVUg3lGiWhg,307
3
3
  coverage/annotate.py,sha256=rcUxalBphRmZePMoSZO8yPCMR7NkdEKsglUmAQV7COM,3863
4
4
  coverage/bytecode.py,sha256=eaUA9uzyxoC_T11d4hdxZyRZVhtbNRDUsVlA4_sQ1rQ,6504
5
- coverage/cmdline.py,sha256=3HzYrBjj_iXrKR3aNDxPpBgaGQVmImxalA4eoN3eauE,37654
6
- coverage/collector.py,sha256=RG7gLhzGAu4ZCyLx5XhQEsDKdVxeSGq5uhhybhVislk,19902
7
- coverage/config.py,sha256=hEjx9mwZr6L0miEm8kXkP3JzUEBSalt6OgqfGc5mhHc,26039
5
+ coverage/cmdline.py,sha256=dCYQCAeO2Vo56W6mrW2WXdV9qy5R7v-lm0LBCPvQHYk,37752
6
+ coverage/collector.py,sha256=JEnp6NKbywHOopu6FXlNDlnk2NbbOqa4kNpx1FoR2zw,19798
7
+ coverage/config.py,sha256=JL7XwK4uoW5wVMjT-hU6cFpgHCimUtUiAEQzSNaSOO4,26033
8
8
  coverage/context.py,sha256=YX7Pg0y3Og-d3qDcgoMmEpuf9jIcigcYnF0edZaqIsM,2506
9
- coverage/control.py,sha256=ViKaWEzf60dGJgobGl3u2vv10gpcDylk3-mi3mvmCT4,56030
9
+ coverage/control.py,sha256=oPZYE10LjV5gJtTEVrhb5hAARXO5DkFJLbxpZu-AF90,56087
10
10
  coverage/core.py,sha256=FgNbMrDRj9_ETraUQLjx3baRaUnpmb4CAW32S1DCUqg,4477
11
11
  coverage/data.py,sha256=WuNUTfXoytulNWHA-F1OnSfvqu0DgSN7tg9R4ow2CjA,8352
12
- coverage/debug.py,sha256=rSJ9rbZzNj6KIZslUR3VQ2YUBTfWdK7aG3cgH87d_1U,22207
12
+ coverage/debug.py,sha256=rY7n6UYRtIaWjC1Wn764AfH8XjYrvJB3XZcvQAH-bNs,22235
13
13
  coverage/disposition.py,sha256=eZmBzTPMmLkDi5OLRNrqtJQMZ4XXh4sHrP1xPEZ50D8,1954
14
- coverage/env.py,sha256=sbWgpZKO8xzXtQP6_RRPSCEjMFBbDUc5A3y1tqfQW8s,7610
15
- coverage/exceptions.py,sha256=gjKFVpp4YXDBrE0I5Cnyp9fICXLGEur59jOjbabEFVg,1486
14
+ coverage/env.py,sha256=-QCJcrE6UoJmUzO_3shtviXViblPiYEBEmb6vgrpq0c,5105
15
+ coverage/exceptions.py,sha256=SM3t24dubPw7bB1oAjo2t3M2B-kaJWBudoYsuGX-v4c,1502
16
16
  coverage/execfile.py,sha256=TSqB02-3aCYLqPe_ELpD91Y29UVi7EwOLrkTZsZ4pFg,12320
17
17
  coverage/files.py,sha256=xXp40_DeEM8oUd-EEtUcvK24YHTxmiHCfhfcgeOTQxc,19908
18
- coverage/html.py,sha256=i04BgoHmLhHPERnEYT-ivmgtH6hxpgFBcQmjVEqgtpk,31909
18
+ coverage/html.py,sha256=9oO7s6BHzoHNaYCldJ_k9oFD4TIMDd0x4wH_jXJaSUw,32238
19
19
  coverage/inorout.py,sha256=HbNb7xIolXGyXtohzwgDQCLrO4HkFnGo5oCvws2lqmY,24957
20
- coverage/jsonreport.py,sha256=gi7T8I850cPgmLbtZ-UvbonzSS0op-v7vTERKN1V3ss,6919
21
- coverage/lcovreport.py,sha256=7lvqFBOBMZtjWrorxgev2axS1Wj1RHG9uhNER1uJhEk,7968
22
- coverage/misc.py,sha256=xytcM5j7NDwhWPB8jdWMwqmiEy8fImMLUZExm1eSPOw,11608
20
+ coverage/jsonreport.py,sha256=wZgntJY2uApDvAdpnNPcrwNvmyb3Tc4XK3fN5L2Opf0,7255
21
+ coverage/lcovreport.py,sha256=OmqTh9rQ2GaIRYADx_3OOhmfZOoG_ocPqbOB9j7Kp_A,8091
22
+ coverage/misc.py,sha256=pvDaKapNAHzE76UaHRqsJuhhmMhgXBJLAYKwEIOwPkI,11662
23
23
  coverage/multiproc.py,sha256=PpThtQg0j9NHlYpceNxx5wg9O4XdOjjt03jlI2rkfwI,4293
24
24
  coverage/numbits.py,sha256=t7XK_d-I-tVZgRS2M3Y5PG0Pq017D3rvecSipBsT_CA,4817
25
- coverage/parser.py,sha256=oQDSOwjbyYxpf-6LZhFFmum1WmgKrwz1S-WCkPnnmN8,53500
26
- coverage/patch.py,sha256=tcw8V58zIgDdm-cyMmgtAjNaHhOZQkuJuYmIQ91fD_M,5701
27
- coverage/phystokens.py,sha256=enBRdptUw3gxDGLfgrxqtCR0gTRQzJU-AkHZU-pd4uA,7795
25
+ coverage/parser.py,sha256=vP552qMlBqw-uUwA8Vbf8Cv4W37CxP8BH-3owuojqHg,47437
26
+ coverage/patch.py,sha256=3GHFJnl1scWtvRVhFp2-qPHdAcF8Ve44vdl8xl3C7Oo,5731
27
+ coverage/phystokens.py,sha256=QYlZQBB343TW7SRHhaeo6AoKr9abhMCFjSC4c6aLg3Y,7645
28
28
  coverage/plugin.py,sha256=sWFPqm3JrMLRrRNZryP3WmRi3VbGBmCWol9cKEKFYas,22124
29
29
  coverage/plugin_support.py,sha256=DWcHXg2Gde0r5XH68sxygXpLGcMlp8H6zDhNOKg6Wc4,10741
30
30
  coverage/py.typed,sha256=QhKiyYY18iX2PTjtgwSYebGpYvH_m0bYEyU_kMST7EU,73
31
- coverage/python.py,sha256=bjIjdnDuMar2nRRfcIQz1siX4oX7AEqBqLQjzjbaJiA,8835
31
+ coverage/python.py,sha256=EOihCVUPfBa5WwxHyCJs7Qn8iSfvTGGO-ndCitP5iX8,8853
32
32
  coverage/pytracer.py,sha256=Liqdi9lQlnisMmoPklkj2xMQFsr3_8w3LZ9LkedZ3qY,15685
33
33
  coverage/regions.py,sha256=cRCIZynMRr9J76g81eBPegSSd1eIJ0VofIKA3w90TxY,4625
34
34
  coverage/report.py,sha256=QRtgWnB2wJNcVBVuxoHrR_eGHwAhQkTE-ShqBDoD5WE,11114
35
35
  coverage/report_core.py,sha256=NVKMkXHOgtzes4JSa-Pa1UJGKOvTE8fwOxmxJZ8dQZk,4169
36
- coverage/results.py,sha256=O5fwNRL66aYekMCy3iMisgJm1xronuuc_-LM6XN2Bss,14150
37
- coverage/sqldata.py,sha256=vYsXjrVxpXkkrGM8S0d4L-1ko0imk9C7y-A6-MEXuEg,46573
36
+ coverage/results.py,sha256=81OEuQwiAJrAs4HNVtdH1VII-HnoaWMQRPczg9P6SDw,16572
37
+ coverage/sqldata.py,sha256=YDlVuCWRz-EqDAu9w-Q3P-8ETib17MRwdGkuyMjQp6U,46679
38
38
  coverage/sqlitedb.py,sha256=7MmRxX7alrq-Elzx5TzJJNi6xURwUH5mX2Pvgr_Qnp8,10249
39
39
  coverage/sysmon.py,sha256=u3Oek5ToXFSwjy_x9zOymOWFznRFPT0YxIXyou_QU_Y,17965
40
40
  coverage/templite.py,sha256=ETQ1TTufhLF6qlS2kuaX9gg7iQ-c0V6hTlGcInJ0dWA,11116
41
41
  coverage/tomlconfig.py,sha256=GtiVV3RzKwj5Z6-RSL8XZFSO5iLfj97dcvqpODkw5Ek,7766
42
- coverage/tracer.cp310-win_amd64.pyd,sha256=TZ_pIVpQo7m056Am8dygy0yXmuWa-DDqAR-hyRGuRT8,22016
42
+ coverage/tracer.cp310-win_amd64.pyd,sha256=ReLmHff0fvnT6s4-B1piY1a3RhbezZKyCJAT3rcEEtA,22016
43
43
  coverage/tracer.pyi,sha256=e1YXvQg8IuQaaoP7Tj25It3pNAtv0Mt29DwwxO4KfaM,1248
44
- coverage/types.py,sha256=dUQ91LEjNe3e4WHI1bzNYdTMKy_axXgVPU84mPzFMp0,5971
45
- coverage/version.py,sha256=IdUngJsbgDS05b7-ZlkQ_-E0m7k4TzWfST-CYQPG2o4,1463
44
+ coverage/types.py,sha256=0f03sJRwr4TZItHwZPHNFxL5bhjU1B3ye8C1BVQaUPc,5804
45
+ coverage/version.py,sha256=S45hpB6zMbJnEW8jDIl4pxGE0QjLTKTOJvk5DUXNmhc,1127
46
46
  coverage/xmlreport.py,sha256=Wha1LxJgIEqKPO2hVqywTDt3QfPNtk4bgHqxBnog-mA,10133
47
47
  coverage/htmlfiles/coverage_html.js,sha256=PqDTAlVdIaB9gIjEf6JHHysMm_D7HyRe4BzQFfpf3OM,26207
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=dJV8bc3mMQz6J_N2KxVMXNKVge6vnMiQiqqe1QYuZmw,6643
52
52
  coverage/htmlfiles/style.css,sha256=DoE2sbDGB3s5ZrE9QCbgKivfw-HcpTRvtMeXbJn7EjA,16020
53
53
  coverage/htmlfiles/style.scss,sha256=ZjH-qCU3X7wrMfepdUhqyYc8gXaqBz6n_M9hTMU93Kw,21737
54
- coverage-7.10.6.dist-info/licenses/LICENSE.txt,sha256=6z17VIVGasvYHytJb1latjfSeS4mggayfZnnk722dUk,10351
55
- coverage-7.10.6.dist-info/METADATA,sha256=f_Wsv8bjPfAU1_UwoVj2qlmh_NynufS7_j_H8B9Xfco,9155
56
- coverage-7.10.6.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
57
- coverage-7.10.6.dist-info/entry_points.txt,sha256=-SeH-nlgTLEWW1cmyqqCQneSw9cKYQOUHBXXYO-OWdY,123
58
- coverage-7.10.6.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
59
- coverage-7.10.6.dist-info/RECORD,,
54
+ coverage-7.11.0.dist-info/licenses/LICENSE.txt,sha256=6z17VIVGasvYHytJb1latjfSeS4mggayfZnnk722dUk,10351
55
+ coverage-7.11.0.dist-info/METADATA,sha256=zNoryzJsdBM_IZJaCVbnOeYW3SizS9bM6TLvHBI_l4s,9178
56
+ coverage-7.11.0.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
57
+ coverage-7.11.0.dist-info/entry_points.txt,sha256=-SeH-nlgTLEWW1cmyqqCQneSw9cKYQOUHBXXYO-OWdY,123
58
+ coverage-7.11.0.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
59
+ coverage-7.11.0.dist-info/RECORD,,