Skip to content

Bump the pip group across 1 directory with 8 updates#87

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-285ae1f815
Open

Bump the pip group across 1 directory with 8 updates#87
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-285ae1f815

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Copy link
Copy Markdown
Contributor

Warning

Dependabot will stop supporting python v3.9!

Please upgrade to one of the following versions: v3.9, v3.10, v3.11, v3.12, v3.13, or v3.14.

Updates the requirements on cython, numpy, setuptools, wheel, numpydoc, sphinx, sphinx-gallery and sphinx-notfound-page to permit the latest version.
Updates cython to 3.2.5

Changelog

Sourced from cython's changelog.

3.2.5 (2026-05-23)

Bugs fixed

  • A compile failure was fixed when using the walrus operator inside of try-except. (Github issue :issue:7462)

  • Expressions with side-effects as object argument to isinstance() could get evaluated multiple times, e.g. when they use the walrus operator. (Github issue :issue:7670)

  • Several problems generating the shared utility module were resolved, including a performance regression with memory views. (Github issues :issue:7487, :issue:7497, :issue:7504, :issue:7558)

  • Some GC and refcounting issues were resolved for Cython functions in the Limited API. (Github issue :issue:7594)

  • Refcounting errors and error handling issues were resolved in some rare error handling cases. (Github issues :issue:7597, :issue:7599, :issue:7612, :issue:7673)

  • Using cython.pymutex in an extension type with cdef methods generated invalid C code missing the required PyMutex declarations. (Github issue :issue:6995)

  • Calling .get_frame() on Cython coroutines could crash in freethreading Python. (Github issue :issue:7632)

  • The vectorcall protocol was not used correctly in .throw() of Cython coroutines when raising the exception only by type (without value or traceback). (Github issue :issue:7677)

  • A problem with cpdef enums in the Limited API of Python 3.11+ was resolved. (Github issue :issue:7503)

  • Unicode predicates like .isdigit() are now allowed to fail in the Limited API. (Github issue :issue:7602)

  • Conditional expressions mixing Python float and int object types could accidentally infer float as the common result type, instead of treating both independently.

  • Using sizeof() in the size declarations of extern arrays failed. (Github issue :issue:7451)

  • Enabling profiling generated invalid C code for non-Python return tuples. (Github issue :issue:7580)

  • abs() on C long long values could generate invalid C code.

... (truncated)

Commits
  • ec15209 Tests: Fix test in Py3.16, following cython/cython#7709
  • aa576c4 Fix test.
  • 2398ddd Prepare release of 3.2.5.
  • abb261f Update changelog.
  • a4bae70 Small cleanup of memoryview assertion (GH-7635)
  • 80d9e7e Prevent walrus operator from being re-evaluated multiple times in isinstance(...
  • 0c69532 CI: Pip PyPy 3.11 version to avoid CI failures.
  • f7d6b7a CI: Allow longer PyPy version strings than "major.minor".
  • b7a1d43 Update changelog.
  • f02df0a Build: Remove outdated license identifier (long replaced by license kw-opti...
  • Additional commits viewable in compare view

Updates numpy to 2.0.2

Release notes

Sourced from numpy's releases.

NumPy 2.0.2 release (Aug 26, 2024)

NumPy 2.0.2 Release Notes

NumPy 2.0.2 is a maintenance release that fixes bugs and regressions discovered after the 2.0.1 release.

The Python versions supported by this release are 3.9-3.12.

Contributors

A total of 13 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Bruno Oliveira +
  • Charles Harris
  • Chris Sidebottom
  • Christian Heimes +
  • Christopher Sidebottom
  • Mateusz Sokół
  • Matti Picus
  • Nathan Goldbaum
  • Pieter Eendebak
  • Raghuveer Devulapalli
  • Ralf Gommers
  • Sebastian Berg
  • Yair Chuchem +

Pull requests merged

A total of 19 pull requests were merged for this release.

  • #27000: REL: Prepare for the NumPy 2.0.1 release [wheel build]
  • #27001: MAINT: prepare 2.0.x for further development
  • #27021: BUG: cfuncs.py: fix crash when sys.stderr is not available
  • #27022: DOC: Fix migration note for alltrue and sometrue
  • #27061: BUG: use proper input and output descriptor in array_assign_subscript...
  • #27073: BUG: Mirror VQSORT_ENABLED logic in Quicksort
  • #27074: BUG: Bump Highway to latest master
  • #27077: BUG: Off by one in memory overlap check
  • #27122: BUG: Use the new npyv_loadable_stride_ functions for ldexp and...
  • #27126: BUG: Bump Highway to latest
  • #27128: BUG: add missing error handling in public_dtype_api.c
  • #27129: BUG: fix another cast setup in array_assign_subscript
  • #27130: BUG: Fix building NumPy in FIPS mode
  • #27131: BLD: update vendored Meson for cross-compilation patches
  • #27146: MAINT: Scipy openblas 0.3.27.44.4
  • #27151: BUG: Do not accidentally store dtype metadata in np.save
  • #27195: REV: Revert undef I and document it
  • #27213: BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
  • #27279: BUG: Fix array_equal for numeric and non-numeric scalar types

... (truncated)

Commits
  • 854252d Merge pull request #27280 from charris/prepare-2.0.2
  • cffa071 REL: Prepare for the NumPy 2.0.2 release [wheel build]
  • 1693029 Merge pull request #27279 from charris/backport-27275
  • da9f9c3 BUG: Fix array_equal for numeric and non-numeric scalar types
  • ee1cf96 Merge pull request #27213 from charris/backport-27202
  • 49dec35 BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
  • be56ae2 Merge pull request #27195 from charris/backport-27182
  • 75b039c REV: Revert undef I and document it
  • 428e2ba Merge pull request #27151 from charris/backport-27143
  • 451516d BUG: Do not accidentally store dtype metadata in np.save
  • Additional commits viewable in compare view

Updates setuptools to 82.0.1

Changelog

Sourced from setuptools's changelog.

v82.0.1

Bugfixes

  • Fix the loading of launcher manifest.xml file. (#5047)
  • Replaced deprecated json.__version__ with fixture in tests. (#5186)

Improved Documentation

  • Add advice about how to improve predictability when installing sdists. (#5168)

Misc

v82.0.0

Deprecations and Removals

  • pkg_resources has been removed from Setuptools. Most common uses of pkg_resources have been superseded by the importlib.resources <https://docs.python.org/3/library/importlib.resources.html>_ and importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>_ projects. Projects and environments relying on pkg_resources for namespace packages or other behavior should depend on older versions of setuptools. (#3085)

v81.0.0

Deprecations and Removals

  • Removed support for the --dry-run parameter to setup.py. This one feature by its nature threads through lots of core and ancillary functionality, adding complexity and friction. Removal of this parameter will help decouple the compiler functionality from distutils and thus the eventual full integration of distutils. These changes do affect some class and function signatures, so any derivative functionality may require some compatibility shims to support their expected interface. Please report any issues to the Setuptools project for investigation. (#4872)

v80.10.2

Bugfixes

  • Update vendored dependencies. (#5159)

Misc

... (truncated)

Commits
  • 5a13876 Bump version: 82.0.0 → 82.0.1
  • 51ab8f1 Avoid using (deprecated) 'json.version' in tests (#5194)
  • f9c37b2 Docs/CI: Fix intersphinx references (#5195)
  • 8173db2 Docs: Fix intersphinx references
  • 09bafbc Fix past tense on newsfragment
  • 461ea56 Add news fragment
  • c4ffe53 Avoid using (deprecated) 'json.version' in tests
  • 749258b Cleanup pkg_resources dependencies and configuration (#5175)
  • 2019c16 Parse ext-module.define-macros from pyproject.toml as list of tuples (#5169)
  • b809c86 Sync setuptools schema with validate-pyproject (#5157)
  • Additional commits viewable in compare view

Updates wheel to 0.47.0

Release notes

Sourced from wheel's releases.

0.47.0

  • Added the wheel info subcommand to display metadata about wheel files without unpacking them (#639)
  • Fixed WheelFile raising Missing RECORD file when the wheel filename contains uppercase characters (e.g. Django-3.2.5.whl) but the .dist-info directory inside uses normalized lowercase naming (#411)
Changelog

Sourced from wheel's changelog.

Release Notes

0.47.0 (2026-04-22)

  • Added the wheel info subcommand to display metadata about wheel files without unpacking them ([#639](https://github.com/pypa/wheel/issues/639) <https://github.com/pypa/wheel/issues/639>_)
  • Fixed WheelFile raising Missing RECORD file when the wheel filename contains uppercase characters (e.g. Django-3.2.5.whl) but the .dist-info directory inside uses normalized lowercase naming ([#411](https://github.com/pypa/wheel/issues/411) <https://github.com/pypa/wheel/issues/411>_)

0.46.3 (2026-01-22)

  • Fixed ImportError: cannot import name '_setuptools_logging' from 'wheel' when installed alongside an old version of setuptools and running the bdist_wheel command ([#676](https://github.com/pypa/wheel/issues/676) <https://github.com/pypa/wheel/issues/676>_)

0.46.2 (2026-01-22)

  • Restored the bdist_wheel command for compatibility with setuptools older than v70.1
  • Importing wheel.bdist_wheel now emits a FutureWarning instead of a DeprecationWarning
  • Fixed wheel unpack potentially altering the permissions of files outside of the destination tree with maliciously crafted wheels (CVE-2026-24049)

0.46.1 (2025-04-08)

  • Temporarily restored the wheel.macosx_libfile module ([#659](https://github.com/pypa/wheel/issues/659) <https://github.com/pypa/wheel/issues/659>_)

0.46.0 (2025-04-03)

  • Dropped support for Python 3.8
  • Removed the bdist_wheel setuptools command implementation and entry point. The wheel.bdist_wheel module is now just an alias to setuptools.command.bdist_wheel, emitting a deprecation warning on import.
  • Removed vendored packaging in favor of a run-time dependency on it
  • Made the wheel.metadata module private (with a deprecation warning if it's imported
  • Made the wheel.cli package private (no deprecation warning)
  • Fixed an exception when calling the convert command with an empty description field

0.45.1 (2024-11-23)

  • Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name

... (truncated)

Commits
  • efd83a7 Created a new release
  • bb69216 Reordered the changelog entries
  • d5a1763 fix(wheelfile): resolve .dist-info path case-insensitively when reading wheel...
  • 5718957 [pre-commit.ci] pre-commit autoupdate (#685)
  • 6258068 chore: log_level is better than log_cli_level (#684)
  • 2975deb Require tox >= 4.22
  • 47674ba chore: add check-sdist to checks (#681)
  • 56223f6 __package____spec__.parent (#679)
  • 0ce509e Added the wheel info subcommand (#669)
  • 39039c0 Improved the index page
  • Additional commits viewable in compare view

Updates numpydoc to 1.9.0

Commits
  • 3db2f68 Designate 1.9.0 release
  • 610a25e Designate 1.9.0rc0 release
  • 8044135 Specity the types of numpydoc_xref_ignore option (#631)
  • 865b865 Fix pip setup command in github workflow (#629)
  • 259f8ac Fix broken link in format.rst (#628)
  • 139a344 Switch to storing AST nodes on the stack for more accurate method signature c...
  • 84ebcc0 Switch to dependency groups (#626)
  • 8dbddc6 Bump scientific-python/circleci-artifacts-redirector-action from 1.0.0 to 1.1...
  • 9862b6a Bump actions/download-artifact from 4.2.1 to 4.3.0 in the actions group (#620)
  • 5b437b5 BUG: Correct functionality of numpydoc SS05 (#613)
  • Additional commits viewable in compare view

Updates sphinx to 7.4.7

Release notes

Sourced from sphinx's releases.

Sphinx 7.4.7

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

Changelog

Sourced from sphinx's changelog.

Release 7.4.7 (released Jul 20, 2024)

Bugs fixed

  • #12096: Warn when files are overwritten in the build directory. Patch by Adam Turner and Bénédikt Tran.
  • #12620: Ensure that old-style object description options are respected. Patch by Adam Turner.
  • #12601, #12625: Support callable objects in :py:class:~typing.Annotated type metadata in the Python domain. Patch by Adam Turner.
  • #12601, #12622: Resolve :py:class:~typing.Annotated warnings with sphinx.ext.autodoc, especially when using :mod:dataclasses as type metadata. Patch by Adam Turner.
  • #12589, #12626: autosummary: Fix warnings with :rst:role:!autolink. Patch by Adam Turner.

Release 7.4.6 (released Jul 18, 2024)

Bugs fixed

  • #12589, #9743, #12609: autosummary: Do not add the package prefix when generating autosummary directives for modules within a package. Patch by Adam Turner.
  • #12613: Reduce log severity for ambiguity detection during inventory loading. Patch by James Addison.

Release 7.4.5 (released Jul 16, 2024)

Bugs fixed

  • #12593, #12600: Revert coercing the type of selected :confval:html_sidebars values to a list. Log an error message when string values are detected. Patch by Adam Turner.
  • #12594: LaTeX: since 7.4.0, :rst:dir:seealso and other "light" admonitions now break PDF builds if they contain a :dudir:figure directive; and also if they are contained in a table cell (rendered by tabulary). Patch by Jean-François B.

Release 7.4.4 (released Jul 15, 2024)

... (truncated)

Commits
  • 0d912c8 Bump to 7.4.7 final
  • bbc97e0 autosummary: Filter invalid import prefixes in autolink (#12626)
  • 6c486a5 Fix detecting file changes for the overwritten file warning (#12627)
  • 2bd973e autodoc: Fix warnings with dataclasses in Annotated metadata (#12622)
  • dd77f85 Support callables in Annotated types (#12625)
  • 1ed4ca7 Mark test_build_manpage as XFAIL following changes in Docutils master
  • cd8ce07 Update message catalogues following reverted commits
  • c6cd25f Partially revert "Update message catalogues (#11626)"
  • fa2ba7d Partially Revert "[bot]: Update message catalogues (#12563)"
  • e439c6f Ensure that old-style object description options are respected (#12620)
  • Additional commits viewable in compare view

Updates sphinx-gallery to 0.19.0

Release notes

Sourced from sphinx-gallery's releases.

Release v0.19.0

Full Changelog

Implemented enhancements:

Fixed bugs:

  • Fix minigallery duplicates and add tests and update documenation #1435 (lucyleeow)
  • Fix: Fix minigallery duplicates #1430 (lucyleeow)
  • Fix incorrect paths for JupyterLite Notebook interface URLs, unpin jupyterlite-sphinx, and update JupyterLite integration docs #1417 (agriyakhetarpal)
  • BUG: make _anim_rst windows compatible #1399 (story645)
  • Fix custom sort #1391 (drammock)

Documentation

Project maintenance

Changelog

Sourced from sphinx-gallery's changelog.

v0.19.0

Implemented enhancements:

  • Add block-level sphinx_gallery_capture_repr_block setting [#1398](https://github.com/sphinx-gallery/sphinx-gallery/issues/1398) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1398>__ (tpvasconcelos <https://github.com/tpvasconcelos>__)

Fixed bugs:

  • Fix minigallery duplicates and add tests and update documenation [#1435](https://github.com/sphinx-gallery/sphinx-gallery/issues/1435) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1435>__ (lucyleeow <https://github.com/lucyleeow>__)
  • Fix: Fix minigallery duplicates [#1430](https://github.com/sphinx-gallery/sphinx-gallery/issues/1430) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1430>__ (lucyleeow <https://github.com/lucyleeow>__)
  • Fix incorrect paths for JupyterLite Notebook interface URLs, unpin jupyterlite-sphinx, and update JupyterLite integration docs [#1417](https://github.com/sphinx-gallery/sphinx-gallery/issues/1417) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1417>__ (agriyakhetarpal <https://github.com/agriyakhetarpal>__)
  • BUG: make _anim_rst windows compatible [#1399](https://github.com/sphinx-gallery/sphinx-gallery/issues/1399) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1399>__ (story645 <https://github.com/story645>__)
  • Fix custom sort [#1391](https://github.com/sphinx-gallery/sphinx-gallery/issues/1391) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1391>__ (drammock <https://github.com/drammock>__)

Documentation

  • DOC Fixes to minigallery doc in configuration\.rst [#1437](https://github.com/sphinx-gallery/sphinx-gallery/issues/1437) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1437>__ (lucyleeow <https://github.com/lucyleeow>__)
  • DOC Improve doc on linking code blocks [#1419](https://github.com/sphinx-gallery/sphinx-gallery/issues/1419) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1419>__ (lucyleeow <https://github.com/lucyleeow>__)
  • Doc: mention color css property to hide links [#1412](https://github.com/sphinx-gallery/sphinx-gallery/issues/1412) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1412>__ (jschueller <https://github.com/jschueller>__)
  • DOC Improve custom sort key docs [#1401](https://github.com/sphinx-gallery/sphinx-gallery/issues/1401) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1401>__ (lucyleeow <https://github.com/lucyleeow>__)

Project maintenance

  • [pre-commit.ci] pre-commit autoupdate [#1434](https://github.com/sphinx-gallery/sphinx-gallery/issues/1434) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1434>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1431](https://github.com/sphinx-gallery/sphinx-gallery/issues/1431) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1431>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1428](https://github.com/sphinx-gallery/sphinx-gallery/issues/1428) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1428>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • Fix label checker workflow [#1426](https://github.com/sphinx-gallery/sphinx-gallery/issues/1426) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1426>__ (lucyleeow <https://github.com/lucyleeow>__)
  • [pre-commit.ci] pre-commit autoupdate [#1423](https://github.com/sphinx-gallery/sphinx-gallery/issues/1423) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1423>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1422](https://github.com/sphinx-gallery/sphinx-gallery/issues/1422) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1422>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1418](https://github.com/sphinx-gallery/sphinx-gallery/issues/1418) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1418>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1416](https://github.com/sphinx-gallery/sphinx-gallery/issues/1416) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1416>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1415](https://github.com/sphinx-gallery/sphinx-gallery/issues/1415) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1415>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1413](https://github.com/sphinx-gallery/sphinx-gallery/issues/1413) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1413>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1408](https://github.com/sphinx-gallery/sphinx-gallery/issues/1408) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1408>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1407](https://github.com/sphinx-gallery/sphinx-gallery/issues/1407) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1407>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • Bump codecov/codecov-action from 4 to 5 in the actions group [#1406](https://github.com/sphinx-gallery/sphinx-gallery/issues/1406) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1406>__ (dependabot[bot] <https://github.com/apps/dependabot>__)
  • [pre-commit.ci] pre-commit autoupdate [#1405](https://github.com/sphinx-gallery/sphinx-gallery/issues/1405) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1405>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • MNT Add test for minigallery_sort_order [#1402](https://github.com/sphinx-gallery/sphinx-gallery/issues/1402) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1402>__ (lucyleeow <https://github.com/lucyleeow>__)
  • [pre-commit.ci] pre-commit autoupdate [#1400](https://github.com/sphinx-gallery/sphinx-gallery/issues/1400) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1400>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1395](https://github.com/sphinx-gallery/sphinx-gallery/issues/1395) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1395>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1393](https://github.com/sphinx-gallery/sphinx-gallery/issues/1393) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1393>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)
  • [pre-commit.ci] pre-commit autoupdate [#1390](https://github.com/sphinx-gallery/sphinx-gallery/issues/1390) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1390>__ (pre-commit-ci[bot] <https://github.com/apps/pre-commit-ci>__)

v0.18.0

Implemented enhancements:

  • Allow to disable writing computation times [#1385](https://github.com/sphinx-gallery/sphinx-gallery/issues/1385) <https://github.com/sphinx-gallery/sphinx-gallery/pull/1385>__ (bmwiedemann <https://github.com/bmwiedemann>__)

... (truncated)

Commits

Updates sphinx-notfound-page to 1.1.0

Changelog

Sourced from sphinx-notfound-page's changelog.

Version 1.1.0

:Date: Jan 28, 2025

  • Use the path from the READTHEDOCS_CANONICAL_URL environment variable as default for notfound_urls_prefix.

Version 1.0.4

:Date: Jul 31, 2024

  • Fix issue when installing with Sphinx 7.2.x and notfound_urls_prefix=None

Version 1.0.3

:Date: Jul 30, 2024

  • Fix _Opt deprecation warning

Version 1.0.2

:Date: May 23, 2024

  • Add tests for Python 3.12
  • Remove warning about unclosed files
  • Allow str and None types on notfound_urls_prefix
  • Run pyupgrade and ruff on the codebase

Version 1.0.1

:Date: May 21, 2024

  • Do not create 404 page for embedded
  • Small documentation improvements

Version 1.0.0

:Date: August 30, 2023

Version 1.0.0rc0

... (truncated)

Commits

@dependabot @github

dependabot Bot commented on behalf of github May 1, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, maintenance. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Updates the requirements on [cython](https://github.com/cython/cython), [numpy](https://github.com/numpy/numpy), [setuptools](https://github.com/pypa/setuptools), [wheel](https://github.com/pypa/wheel), [numpydoc](https://github.com/numpy/numpydoc), [sphinx](https://github.com/sphinx-doc/sphinx), [sphinx-gallery](https://github.com/sphinx-gallery/sphinx-gallery) and [sphinx-notfound-page](https://github.com/readthedocs/sphinx-notfound-page) to permit the latest version.

Updates `cython` to 3.2.5
- [Release notes](https://github.com/cython/cython/releases)
- [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst)
- [Commits](cython/cython@3.0.0...3.2.5)

Updates `numpy` to 2.0.2
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.0.0...v2.0.2)

Updates `setuptools` to 82.0.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v45.0.0...v82.0.1)

Updates `wheel` to 0.47.0
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](pypa/wheel@0.37.0...0.47.0)

Updates `numpydoc` to 1.9.0
- [Release notes](https://github.com/numpy/numpydoc/releases)
- [Changelog](https://github.com/numpy/numpydoc/blob/main/RELEASE.rst)
- [Commits](numpy/numpydoc@v1.8.0...v1.9.0)

Updates `sphinx` to 7.4.7
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v7.4.7/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v4.0.0...v7.4.7)

Updates `sphinx-gallery` to 0.19.0
- [Release notes](https://github.com/sphinx-gallery/sphinx-gallery/releases)
- [Changelog](https://github.com/sphinx-gallery/sphinx-gallery/blob/master/CHANGES.rst)
- [Commits](sphinx-gallery/sphinx-gallery@v0.8.1...v0.19.0)

Updates `sphinx-notfound-page` to 1.1.0
- [Changelog](https://github.com/readthedocs/sphinx-notfound-page/blob/main/CHANGELOG.rst)
- [Commits](readthedocs/sphinx-notfound-page@0.3...1.1.0)

---
updated-dependencies:
- dependency-name: cython
  dependency-version: 3.2.4
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: numpy
  dependency-version: 2.0.2
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: numpydoc
  dependency-version: 1.9.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: setuptools
  dependency-version: 82.0.1
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: sphinx
  dependency-version: 7.4.7
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: sphinx-gallery
  dependency-version: 0.19.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: sphinx-notfound-page
  dependency-version: 1.1.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: wheel
  dependency-version: 0.47.0
  dependency-type: direct:development
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the pip group with 8 updates Bump the pip group across 1 directory with 8 updates Jun 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/pip/pip-285ae1f815 branch from 057b8b6 to ed6919c Compare June 1, 2026 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

0 participants