Skip to content

Commit b68f730

Browse files
Update coverage requirement from 6.5.0 to 7.0.0 (#54)
Updates the requirements on [coverage](https://github.com/nedbat/coveragepy) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst">coverage's changelog</a>.</em></p> <blockquote> <h2>Version 7.0.0 — 2022-12-18</h2> <p>Nothing new beyond 7.0.0b1.</p> <p>.. _changes_7-0-0b1:</p> <h2>Version 7.0.0b1 — 2022-12-03</h2> <p>A number of changes have been made to file path handling, including pattern matching and path remapping with the <code>[paths]</code> setting (see :ref:<code>config_paths</code>). These changes might affect you, and require you to update your settings.</p> <p>(This release includes the changes from <code>6.6.0b1 &lt;changes_6-6-0b1_&gt;</code>_, since 6.6.0 was never released.)</p> <ul> <li> <p>Changes to file pattern matching, which might require updating your configuration:</p> <ul> <li> <p>Previously, <code>*</code> would incorrectly match directory separators, making precise matching difficult. This is now fixed, closing <code>issue 1407</code>_.</p> </li> <li> <p>Now <code>**</code> matches any number of nested directories, including none.</p> </li> </ul> </li> <li> <p>Improvements to combining data files when using the :ref:<code>config_run_relative_files</code> setting, which might require updating your configuration:</p> <ul> <li> <p>During <code>coverage combine</code>, relative file paths are implicitly combined without needing a <code>[paths]</code> configuration setting. This also fixed <code>issue 991</code>_.</p> </li> <li> <p>A <code>[paths]</code> setting like <code>*/foo</code> will now match <code>foo/bar.py</code> so that relative file paths can be combined more easily.</p> </li> <li> <p>The :ref:<code>config_run_relative_files</code> setting is properly interpreted in more places, fixing <code>issue 1280</code>_.</p> </li> </ul> </li> <li> <p>When remapping file paths with <code>[paths]</code>, a path will be remapped only if the resulting path exists. The documentation has long said the prefix had to exist, but it was never enforced. This fixes <code>issue 608</code><em>, improves <code>issue 649</code></em>, and closes <code>issue 757</code>_.</p> </li> <li> <p>Reporting operations now implicitly use the <code>[paths]</code> setting to remap file paths within a single data file. Combining multiple files still requires the <code>coverage combine</code> step, but this simplifies some single-file situations. Closes <code>issue 1212</code>_ and <code>issue 713</code>_.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nedbat/coveragepy/commit/df3f2bf0dacded1406e2008394925fbb90f54ce5"><code>df3f2bf</code></a> docs: latest sample HTML report</li> <li><a href="https://github.com/nedbat/coveragepy/commit/52b5680543d5da45b1bb0356d7538724acebd237"><code>52b5680</code></a> docs: prep for 7.0.0</li> <li><a href="https://github.com/nedbat/coveragepy/commit/be5f556a2fef3921b9173d3ccf1b3f3220c795ec"><code>be5f556</code></a> chore: make upgrade</li> <li><a href="https://github.com/nedbat/coveragepy/commit/d20c1d0329b585920cf8b1a36af5d2d9c4bba155"><code>d20c1d0</code></a> docs: <a href="https://github-redirect.dependabot.com/nedbat/coveragepy/issues/1024">#1024</a> was also fixed</li> <li><a href="https://github.com/nedbat/coveragepy/commit/5feb4518748f55a3a2c5caaec231ea52d9fb8929"><code>5feb451</code></a> chore: make upgrade</li> <li><a href="https://github.com/nedbat/coveragepy/commit/84749fdf2ba5f0434576ddd9b478c02308230d3c"><code>84749fd</code></a> build: use tox.pip to ensure all tox pins are the same</li> <li><a href="https://github.com/nedbat/coveragepy/commit/3cd0bc624437710b7bc95938c161c50cc6f8f9c3"><code>3cd0bc6</code></a> test: this was wrong?</li> <li><a href="https://github.com/nedbat/coveragepy/commit/c053b7fe0ffcf12cc21f9abfaea12ffe849b2bc4"><code>c053b7f</code></a> chore: make upgrade</li> <li><a href="https://github.com/nedbat/coveragepy/commit/7e0e072f47c57371a5ac33c76da9dab32747d3ee"><code>7e0e072</code></a> build: a target to summarize <code>make upgrade</code></li> <li><a href="https://github.com/nedbat/coveragepy/commit/18681c4b4cc745e1b149f3b33ede36362c9296e8"><code>18681c4</code></a> build: this link could be useful in the future</li> <li>Additional commits viewable in <a href="https://github.com/nedbat/coveragepy/compare/6.5.0...7.0.0">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Monty Bot <[email protected]>
1 parent 34eec05 commit b68f730

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ verify_ssl = true
55

66
[dev-packages]
77
black = "*"
8-
coverage = "6.5.0"
8+
coverage = "7.0.0"
99
flake8-docstrings = "*"
1010
flake8-black = "*"
1111
flake8-copyright = "*"

news/20221219070757.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dependency upgrade: coverage-7.0.0

0 commit comments

Comments
 (0)