Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all group with 9 updates in the / directory:

Package From To
cython 3.0.11 3.0.12
fastapi[standard] 0.115.6 0.115.10
matplotlib 3.10.0 3.10.1
mypy 1.14.1 1.15.0
pillow 11.0.0 11.1.0
pydantic 2.10.4 2.10.6
sqlmodel 0.0.22 0.0.23
symengine 0.13.0 0.14.0
torchvision 0.20.1 0.21.0

Updates cython from 3.0.11 to 3.0.12

Changelog

Sourced from cython's changelog.

3.0.12 (2025-02-11)

Bugs fixed

  • Release 3.0.11 introduced some incorrect noexcept warnings. (Github issue :issue:6335)

  • Conditional assignments to variables using the walrus operator could crash. (Github issue :issue:6094)

  • Dict assignments to struct members with reserved C names could generate invalid C code.

  • Fused ctuples with the same entry types but different sizes could fail to compile. (Github issue :issue:6328)

  • In Py3, pyximport was not searching sys.path when looking for importable source files. (Github issue :issue:5615)

  • Using & 0 on integers produced with int.from_bytes() could read invalid memory on Python 3.10. (Github issue :issue:6480)

  • Modules could fail to compile in PyPy 3.11 due to missing CPython specific header files. Patch by Matti Picus. (Github issue :issue:6482)

  • Minor fix in C++ partial_sum() declaration.

Commits

Updates fastapi[standard] from 0.115.6 to 0.115.10

Release notes

Sourced from fastapi[standard]'s releases.

0.115.10

Fixes

  • ♻️ Update internal annotation usage for compatibility with Pydantic 2.11. PR #13314 by @​Viicos.

Upgrades

Translations

0.115.9

Fixes

  • 🐛 Ensure that HTTPDigest only raises an exception when auto_error is True. PR #2939 by @​arthurio.

Refactors

Docs

Translations

... (truncated)

Commits
  • a264472 📝 Update release notes
  • 433837d 🔖 Release version 0.115.10
  • 68074ba 📝 Update release notes
  • 15dd2b6 ♻️ Update internal annotation usage for compatibilty with Pydantic 2.11 (#13314)
  • 45e0185 📝 Update release notes
  • 7495435 📝 Update release notes
  • 7c4d1fe 🌐 Add Ukrainian translation for docs/uk/docs/tutorial/debugging.md (#13370)
  • 23821e9 🌐 Add Ukrainian translation for docs/uk/docs/tutorial/query-params.md (#13362)
  • 8bfec9f 📝 Update release notes
  • 5fbaf6d 📝 Update release notes
  • Additional commits viewable in compare view

Updates matplotlib from 3.10.0 to 3.10.1

Release notes

Sourced from matplotlib's releases.

REL: v3.10.1

This is the first bugfix release of the 3.10.x series.

This release contains several bug-fixes and adjustments:

  • Respect array alpha with interpolation_stage='rgba' in _Imagebase::_make_image
  • Remove md5 usage to prevent issues on FIPS enabled systems
  • Fix pyplot.matshow figure handling
  • Fix modifying Axes' position also alters the original Bbox object used for initialization
  • Fix title position for polar plots
  • Add version gate to GTK4 calls when necessary
  • Raise warning if both c and facecolors are used in scatter plot

As well as several documentation improvements and corrections.

Commits
  • 6fc8169 REL 3.10.1
  • 33361fb Release notes v3.10.1
  • 2495bbc Fix toctrees for 3.10 release notes
  • 526785e Github stats v3.10.1
  • d23b173 Merge v3.10.0-doc into v3.10.x
  • 9fe0dad Merge pull request #29682 from meeseeksmachine/auto-backport-of-pr-29680-on-v...
  • d3cf53d Merge pull request #29683 from meeseeksmachine/auto-backport-of-pr-29670-on-v...
  • 2944994 Backport PR #29670: DOC: change marginal scatter plot to subplot_mosaic
  • b4f94a4 Backport PR #29680: DOC: fix the bug of examples\event_handling
  • 4f3d478 Merge pull request #29676 from meeseeksmachine/auto-backport-of-pr-29666-on-v...
  • 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) -> int:
    return self.value
@f.setter
def f(self, x: str | int) -> None:
    try:
        self.value = int(x)
    except ValueError:
        raise Exception(f"'{x}' is not a valid value for 'f'")

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 pillow from 11.0.0 to 11.1.0

Release notes

Sourced from pillow's releases.

11.1.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.1.0.html

Documentation

Dependencies

Testing

... (truncated)

Changelog

Sourced from pillow's changelog.

11.1.0 and newer

See GitHub Releases:

Commits

Updates pydantic from 2.10.4 to 2.10.6

Release notes

Sourced from pydantic's releases.

v2.10.6 2025-01-23

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.5...v2.10.6

v2.10.5 2024-12-18

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.4...v2.10.5

Changelog

Sourced from pydantic's changelog.

v2.10.6 (2025-01-23)

GitHub release

What's Changed

Fixes

v2.10.5 (2025-01-08)

GitHub release

What's Changed

Fixes

Commits

Updates sqlmodel from 0.0.22 to 0.0.23

Release notes

Sourced from sqlmodel's releases.

0.0.23

Fixes

Refactors

Docs

Internal

... (truncated)

Changelog

Sourced from sqlmodel's changelog.

0.0.23

Fixes

Refactors

Docs

Internal

... (truncated)

Commits
  • bf376f8 🔖 Release version 0.0.23
  • 2ce6abf 📝 Update release notes
  • b3e0f1c 🩺 Take the GH badge only from pushes to the main branch (#1291)
  • 94d47ac 📝 Update release notes
  • 7a51870 🐛 Fix type annotation in Field constructor (#1304)
  • 850dd74 📝 Update release notes
  • 69a4504 🐛 Fix Pydantic version check for version 2.10.x onwards (#1255)
  • f46997e 📝 Update release notes
  • 1bd5f27 📝 Update documentation to refer to list instead of List (#1147)
  • a82c3fe 📝 Update release notes
  • Additional commits viewable in compare view

Updates symengine from 0.13.0 to 0.14.0

Release notes

Sourced from symengine's releases.

v0.14.0

What's Changed

Contributors

  • Isuru Fernando
  • Aaron Miller
  • Ondřej Čertík
  • Björn Dahlgren
  • Firat Bezir

Full Changelog: symengine/symengine.py@v0.13.0...v0.14.0

Commits
  • 79049ab Merge pull request #504 from isuruf/authors
  • df4081d Add Aaron and Firat to README. Welcome to SymEngine!!
  • b8cc26e Merge pull request #503 from isuruf/update-cxx
  • 248e6dc update symengine c++ to 0.14.0
  • 738eb43 Merge pull request #502 from isuruf/version
  • 320c984 update version to 0.14.0
  • 0a3e0af Use RCPBasicAware{Output,Input}Archive
  • 7c48a0d Update version
  • 4908ebe Merge pull request #501 from firatbezir/update-readme
  • a3a9ce8 Update README.md
  • Additional commits viewable in compare view

Updates torchvision from 0.20.1 to 0.21.0

Release notes

Sourced from torchvision's releases.

Torchvision 0.21 release

Highlights

Detailed changes

Image decoding

Torchvision continues to improve its image decoding capabilities. For this version, we added support for HEIC and AVIF image formats. Things are a bit different this time: to enable it, you'll need to pip install torchvision-extra-decoders, and the decoders are available in torchvision as torchvision.io.decode_heic() and torchvision.io.decode_avif(). This is still experimental / BETA, so let us know if you encounter any issue.

Read more in our docs!

New Features

[io] Add support for decoding AVIF and HEIC image formats (#8671)

Improvements

[datasets] Don't error when dataset is already downloaded (#8691) [datasets] Don't print when dataset is already downloaded (#8681) [datasets] remove printing info in datasets (#8683) [utils] Add label_colors argument to draw_bounding_boxes (#8578) [models] Add __deepcopy__ support for DualGraphModule (#8708) [Docs] Various documentation improvements (#8798, #8709, #8576, #8620, #8846, #8758) [Code quality] Various code quality improvements (#8757, #8755, #8754, #8689, #8719, #8772, #8774, #8791, #8705)

Bug Fixes

[io] Fix memory leak in decode_webp (#8712) [io] Fix pyav 14 compatibility error (#8776) [models] Fix order of auxiliary networks in googlenet.py (#8743) [transforms] Fix adjust_hue on ARM (#8618) [reference scripts] Fix error when loading the cached dataset in video classification reference(#8727) [build] fix CUDA build with NVCC_FLAGS in env (#8692)

Tracked Regressions

[build] aarch64 builds are build with manylinux_2_34_aarch64 tag according to auditwheel check (#8883)

Contributors

We're grateful for our community, which helps us improve torchvision by submitting issues and PRs, and providing feedback and suggestions. The following persons have contributed patches for this release:

amdfaa Andreas Floros, Andrey Talman , Beh Chuen Yang, David Miguel Susano Pinto, GdoongMathew, Jason Chou, Li-Huai (Allan) Lin, Maohua Li, Nicolas Hug , pblwk, R. Yao, sclarkson, vfdev, Ștefan Talpalaru

Commits

Bumps the all group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cython](https://github.com/cython/cython) | `3.0.11` | `3.0.12` |
| [fastapi[standard]](https://github.com/fastapi/fastapi) | `0.115.6` | `0.115.10` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.10.0` | `3.10.1` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `11.0.0` | `11.1.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.4` | `2.10.6` |
| [sqlmodel](https://github.com/fastapi/sqlmodel) | `0.0.22` | `0.0.23` |
| [symengine](https://github.com/symengine/symengine.py) | `0.13.0` | `0.14.0` |
| [torchvision](https://github.com/pytorch/vision) | `0.20.1` | `0.21.0` |



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

Updates `fastapi[standard]` from 0.115.6 to 0.115.10
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.6...0.115.10)

Updates `matplotlib` from 3.10.0 to 3.10.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.10.0...v3.10.1)

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 `pillow` from 11.0.0 to 11.1.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.0.0...11.1.0)

Updates `pydantic` from 2.10.4 to 2.10.6
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.4...v2.10.6)

Updates `sqlmodel` from 0.0.22 to 0.0.23
- [Release notes](https://github.com/fastapi/sqlmodel/releases)
- [Changelog](https://github.com/fastapi/sqlmodel/blob/main/docs/release-notes.md)
- [Commits](fastapi/sqlmodel@0.0.22...0.0.23)

Updates `symengine` from 0.13.0 to 0.14.0
- [Release notes](https://github.com/symengine/symengine.py/releases)
- [Commits](symengine/symengine.py@v0.13.0...v0.14.0)

Updates `torchvision` from 0.20.1 to 0.21.0
- [Release notes](https://github.com/pytorch/vision/releases)
- [Commits](pytorch/vision@v0.20.1...v0.21.0)

---
updated-dependencies:
- dependency-name: cython
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: fastapi[standard]
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sqlmodel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: symengine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: torchvision
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

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

dependabot bot commented on behalf of github Apr 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 1, 2025
@dependabot dependabot bot deleted the dependabot/pip/all-4232855235 branch April 1, 2025 10:12
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