Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the pip group with 5 updates #521

Merged
merged 1 commit into from
Mar 1, 2025
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the pip group with 5 updates:

Package From To
coverage[toml] 7.6.10 7.6.12
mypy 1.14.1 1.15.0
types-requests 2.32.0.20241016 2.32.0.20250301
sphinx 8.1.3 8.2.1
sphinx-autodoc-typehints 3.0.1 3.1.0

Updates coverage[toml] from 7.6.10 to 7.6.12

Release notes

Sourced from coverage[toml]'s releases.

7.6.12

Version 7.6.12 — 2025-02-11

  • Fix: some aarch64 distributions were missing (issue 1927). These are now building reliably.

➡️  PyPI page: coverage 7.6.12. :arrow_right:  To install: python3 -m pip install coverage==7.6.12

7.6.11

Version 7.6.11 — 2025-02-08

  • Fix: a memory leak in CTracer has been fixed. The details are in issue 1924 and pytest-dev 676. This should reduce the memory footprint for everyone even if it hadn’t caused a problem before.
  • We now ship a py3-none-any.whl wheel file. Thanks, Russell Keith-Magee.

➡️  PyPI page: coverage 7.6.11. :arrow_right:  To install: python3 -m pip install coverage==7.6.11

Changelog

Sourced from coverage[toml]'s changelog.

Version 7.6.12 — 2025-02-11

  • Fix: some aarch64 distributions were missing (issue 1927_). These are now building reliably.

.. _issue 1927: nedbat/coveragepy#1927

.. _changes_7-6-11:

Version 7.6.11 — 2025-02-08

  • Fix: a memory leak in CTracer has been fixed. The details are in issue 1924_ and pytest-dev 676_. This should reduce the memory footprint for everyone even if it hadn't caused a problem before.

  • We now ship a py3-none-any.whl wheel file. Thanks, Russell Keith-Magee <pull 1914_>_.

.. _pull 1914: nedbat/coveragepy#1914 .. _issue 1924: nedbat/coveragepy#1924 .. _pytest-dev 676: pytest-dev/pytest-cov#676

.. _changes_7-6-10:

Commits
  • 7e5373e docs: sample HTML for 7.6.12
  • a4ed38b docs: prep for 7.6.12
  • ce4efdc build: fix aarch64 kits #1927
  • a1f3192 build: don't publish if kit building failed
  • bb68f99 chore: bump the action-dependencies group with 2 updates (#1926)
  • f3d6b4a refactor: check for more kinds of constant tests
  • 67899ea refactor: we no longer care what kind of constant the compile-time constants are
  • c850f20 refactor: macOS is MACOS, not OSX
  • a1b2c1a build: there are always tweaks to howto.txt
  • 9c03039 build: bump version to 7.6.12
  • Additional commits viewable in compare view

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Different Property Getter and Setter Types

Mypy now supports using different types for property getter and setter.

class A:
    value: int
@property
def f(self) -&gt; int:
    return self.value
@f.setter
def f(self, x: str | int) -&gt; None:
    try:
        self.value = int(x)
    except ValueError:
        raise Exception(f&quot;'{x}' is not a valid value for 'f'&quot;)

Contributed by Ivan Levkivskyi (PR 18510)

Selectively Disable Deprecated Warnings

It's now possible to selectively disable warnings generated from warnings.deprecated using the --deprecated-calls-exclude option.

# mypy --enable-error-code deprecated
#      --deprecated-calls-exclude=foo.A
import foo
foo.A().func()  # OK, the deprecated warning is ignored
file foo.py
from typing_extensions import deprecated
class A:
@​deprecated("Use A.func2 instead")
def func(self): pass

Contributed by Marc Mueller (PR 18641)

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates types-requests from 2.32.0.20241016 to 2.32.0.20250301

Commits

Updates sphinx from 8.1.3 to 8.2.1

Release notes

Sourced from sphinx's releases.

Sphinx 8.2.1

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Sphinx 8.2.0

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Dependencies

  • #13000: Drop Python 3.10 support.

Incompatible changes

  • #13044: Remove the internal and undocumented has_equations data from the MathDomain domain. The undocumented MathDomain.has_equations method now unconditionally returns True. These are replaced by the has_maths_elements key of the page context dict. Patch by Adam Turner.
  • #13227: HTML output for sequences of keys in the kbd role no longer uses a <kbd class="kbd compound"> element to wrap the keys and separators, but places them directly in the relevant parent node. This means that CSS rulesets targeting kbd.compound or .kbd.compound will no longer have any effect. Patch by Adam Turner.

Deprecated

  • #13037: Deprecate the SingleHTMLBuilder.fix_refuris method. Patch by James Addison.
  • #13083, #13330: Un-deprecate sphinx.util.import_object. Patch by Matthias Geier.

Features added

  • #13173: Add a new duplicate_declaration warning type, with duplicate_declaration.c and duplicate_declaration.cpp subtypes. Patch by Julien Lecomte and Adam Turner.
  • #11824: linkcode: Allow extensions to add support for a domain by defining the keys that should be present. Patch by Nicolas Peugnet.
  • #13144: Add a class option to the autosummary directive. Patch by Tim Hoffmann.
  • #13146: Napoleon: Unify the type preprocessing logic to allow Google-style docstrings to use the optional and default keywords. Patch by Chris Barrick.

... (truncated)

Changelog

Sourced from sphinx's changelog.

Release 8.2.1 (released Feb 21, 2025)

Bugs fixed

  • #13367: Correct spelling of highlighting_failure in warning sub-type. Patch by Bart Kamphorst.
  • #13377: Restore support for using sphinx.testing.path paths with sphinx.testing.fixtures. Patch by Kazuya Takei.
  • #13380: viewcode: Fix importing modules more than once. Patch by Dave Hoese.
  • #13382: Napoleon: Use the right valid types for configuration values. Patch by Adam Turner.
  • 13376: Fix copying assets from a relative :confval:html_static_path entry. Patch by Adam Turner.

Release 8.2.0 (released Feb 18, 2025)

Dependencies

  • #13000: Drop Python 3.10 support.

Incompatible changes

  • #13044: Remove the internal and undocumented has_equations data from the :py:class:!MathDomain domain. The undocumented :py:meth:!MathDomain.has_equations method now unconditionally returns True. These are replaced by the has_maths_elements key of the page context dict. Patch by Adam Turner.
  • #13227: HTML output for sequences of keys in the :rst:role:kbd role no longer uses a <kbd class="kbd compound"> element to wrap the keys and separators, but places them directly in the relevant parent node. This means that CSS rulesets targeting kbd.compound or .kbd.compound will no longer have any effect. Patch by Adam Turner.

Deprecated

  • #13037: Deprecate the SingleHTMLBuilder.fix_refuris method. Patch by James Addison.
  • #13083, #13330: Un-deprecate sphinx.util.import_object. Patch by Matthias Geier.

... (truncated)

Commits
  • 0215a73 Bump to 8.2.1 final
  • 53b7913 Remove background colours from (un)translated classes
  • 58e64d4 Fix _relative_path() for unresolved paths
  • 1a3d1de Add missing CHANGES entry
  • d847d73 Bump Ruff to 0.9.7
  • 7ba7628 Napoleon: Fix valid types for configuration values (#13382)
  • 8ef0708 Fix viewcode extension importing modules more than once (#13380)
  • 7e1bf28 Restore support for sphinx.testing.path paths in ``sphinx.testing.fixture...
  • d099161 Revert "Mark autodoc singledispatchmethod tests as expected failures" (#13381)
  • ba3c729 Switch transifex workflow trigger from 'push' to 'pull_request'
  • Additional commits viewable in compare view

Updates sphinx-autodoc-typehints from 3.0.1 to 3.1.0

Release notes

Sourced from sphinx-autodoc-typehints's releases.

3.1.0

What's Changed

New Contributors

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.0.1...3.1.0

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
mypy [>= 1.10.a, < 1.11]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pip group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [coverage[toml]](/~https://github.com/nedbat/coveragepy) | `7.6.10` | `7.6.12` |
| [mypy](/~https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [types-requests](/~https://github.com/python/typeshed) | `2.32.0.20241016` | `2.32.0.20250301` |
| [sphinx](/~https://github.com/sphinx-doc/sphinx) | `8.1.3` | `8.2.1` |
| [sphinx-autodoc-typehints](/~https://github.com/tox-dev/sphinx-autodoc-typehints) | `3.0.1` | `3.1.0` |


Updates `coverage[toml]` from 7.6.10 to 7.6.12
- [Release notes](/~https://github.com/nedbat/coveragepy/releases)
- [Changelog](/~https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.10...7.6.12)

Updates `mypy` from 1.14.1 to 1.15.0
- [Changelog](/~https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.14.1...v1.15.0)

Updates `types-requests` from 2.32.0.20241016 to 2.32.0.20250301
- [Commits](/~https://github.com/python/typeshed/commits)

Updates `sphinx` from 8.1.3 to 8.2.1
- [Release notes](/~https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](/~https://github.com/sphinx-doc/sphinx/blob/v8.2.1/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v8.1.3...v8.2.1)

Updates `sphinx-autodoc-typehints` from 3.0.1 to 3.1.0
- [Release notes](/~https://github.com/tox-dev/sphinx-autodoc-typehints/releases)
- [Commits](tox-dev/sphinx-autodoc-typehints@3.0.1...3.1.0)

---
updated-dependencies:
- dependency-name: coverage[toml]
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: types-requests
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: sphinx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: sphinx-autodoc-typehints
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 1, 2025
Copy link

codecov bot commented Mar 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (3a7bf33) to head (2989308).
Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff            @@
##              main      #521   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           15        15           
  Lines         1857      1857           
  Branches       106       106           
=========================================
  Hits          1857      1857           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@rmartin16 rmartin16 merged commit c36a2b8 into main Mar 1, 2025
36 of 37 checks passed
@rmartin16 rmartin16 deleted the dependabot/pip/pip-b458bed261 branch March 1, 2025 08:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant