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 dependencies group across 1 directory with 10 updates #217

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps the dependencies group with 10 updates in the / directory:

Package From To
torch 2.4.0 2.4.1
typer-slim 0.12.3 0.12.5
rich 13.7.1 13.8.1
pyyaml 6.0.1 6.0.2
regex 2024.7.24 2024.9.11
importlib-resources 6.4.0 6.4.5
torchmetrics 1.4.1 1.4.2
types-pyyaml 6.0.12.20240724 6.0.12.20240917
wandb 0.17.5 0.17.9
pytest 8.3.2 8.3.3

Updates torch from 2.4.0 to 2.4.1

Release notes

Sourced from torch's releases.

PyTorch 2.4.1 Release, bug fix release

This release is meant to fix the following issues (regressions / silent correctness):

Breaking Changes:

  • The pytorch/pytorch docker image now installs the PyTorch package through pip and has switch its conda installation from miniconda to miniforge (#134274)

Windows:

  • Fix performance regression on Windows related to MKL static linking (#130619) (#130697)
  • Fix error during loading on Windows: [WinError 126] The specified module could not be found. (#131662) (#130697)

MPS:

  • Fix tensor.clamp produces wrong values (#130226)
  • Fix Incorrect result from batch norm with sliced inputs (#133610)

ROCM:

  • Fix for launching kernel invalid config error when calling embedding with large index (#130994)
  • Added a check and a warning when attempting to use hipBLASLt on an unsupported architecture (#128753)
  • Fix image corruption with Memory Efficient Attention when running HuggingFace Diffusers Stable Diffusion 3 pipeline (#133331)

Distributed:

  • Fix FutureWarning when using torch.load internally (#130663)
  • Fix FutureWarning when using torch.cuda.amp.autocast internally (#130660)

Torch.compile:

  • Fix exception with torch compile when onnxruntime-training and deepspeed packages are installed. (#131194)
  • Fix silent incorrectness with torch.library.custom_op with mutable inputs and torch.compile (#133452)
  • Fix SIMD detection on Linux ARM (#129075)
  • Do not use C++20 features in cpu_inducotr code (#130816)

Packaging:

  • Fix for exposing statically linked libstdc++ CXX11 ABI symbols (#134494)
  • Fix error while building pytorch from source due to not missing QNNPACK module (#131864)
  • Make PyTorch buildable from source on PowerPC (#129736)
  • Fix XPU extension building (#132847)

Other:

  • Fix warning when using pickle on a nn.Module that contains tensor attributes (#130246)
  • Fix NaNs return in MultiheadAttention when need_weights=False (#130014)
  • Fix nested tensor MHA produces incorrect results (#130196)
  • Fix error when using torch.utils.flop_counter.FlopCounterMode (#134467)

Tracked Regressions:

  • The experimental remote caching feature for Inductor's autotuner (enabled via TORCHINDUCTOR_AUTOTUNE_REMOTE_CACHE) is known to still be broken in this release and actively worked on in main. Following Error is generated: redis.exceptions.DataError: Invalid input of type: 'dict'. Please use nightlies if you need this feature (reported and Fixed by PR: #134032)

Release tracker #132400 contains all relevant pull requests related to this release as well as links to related issues.

Commits

Updates typer-slim from 0.12.3 to 0.12.5

Release notes

Sourced from typer-slim's releases.

0.12.5

Features

  • 💄 Unify the width of the Rich console for help and errors. PR #788 by @​racinmat.
  • 🚸 Improve assertion error message if a group is not a valid subclass. PR #425 by @​chrisburr.

Fixes

Refactors

Docs

Internal

0.12.4

Features

Fixes

  • 🐛 Fix support for UnionType (e.g. str | None) with Python 3.11. PR #548 by @​jonaslb.

... (truncated)

Changelog

Sourced from typer-slim's changelog.

0.12.5

Features

  • 💄 Unify the width of the Rich console for help and errors. PR #788 by @​racinmat.
  • 🚸 Improve assertion error message if a group is not a valid subclass. PR #425 by @​chrisburr.

Fixes

Refactors

Docs

Internal

0.12.4

Features

Fixes

... (truncated)

Commits
  • 88aefd4 🔖 Release version 0.12.5
  • 3ac3644 📝 Update release notes
  • d93c0ac 🔨 Pre-install dependencies in Docker so that testing in Docker is faster (#954)
  • a337850 📝 Update release notes
  • a5b7557 ✅ Add needs_bash test fixture (#888)
  • 6cc1f9a 📝 Update release notes
  • fc2c54f 🐛 Ensure rich_markup_mode=None disables Rich formatting (#859)
  • f17bb06 📝 Update release notes
  • afac2b8 🐛 Fix sourcing of completion path for Git Bash (#801)
  • 6b35a70 📝 Update release notes
  • Additional commits viewable in compare view

Updates rich from 13.7.1 to 13.8.1

Release notes

Sourced from rich's releases.

The Python 3.13 release

[13.8.1] - 2024-09-10

Fixed

The Thanks for your patience Release

This is a fairly large update. Mostly an accumulation of small fixes and enhancements. Nothing qualifies as a *breaking change (for some definition), but there may be some subtly changes to output. Check below for anything that might affect you!

[13.8.0] - 2024-08-26

Fixed

Changed

  • RichHandler errors and warnings will now use different colors (red and yellow) Textualize/rich#2825
  • Removed the empty line printed in jupyter while using Progress Textualize/rich#2616
  • Running tests in environment with FORCE_COLOR or NO_COLOR environment variables
  • ansi decoder will now strip problematic private escape sequences (like \x1b7) Textualize/rich#3278
  • Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes

Added

  • Adds a case_sensitive parameter to prompt.Prompt. This determines if the response is treated as case-sensitive. Defaults to True.
  • Added Console.on_broken_pipe Textualize/rich#3468
Changelog

Sourced from rich's changelog.

[13.8.1] - 2024-09-10

Fixed

[13.8.0] - 2024-08-26

Fixed

Changed

  • RichHandler errors and warnings will now use different colors (red and yellow) Textualize/rich#2825
  • Removed the empty line printed in jupyter while using Progress Textualize/rich#2616
  • Running tests in environment with FORCE_COLOR or NO_COLOR environment variables
  • ansi decoder will now strip problematic private escape sequences (like \x1b7) Textualize/rich#3278
  • Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes
  • rich.Text.highlight_regex now accepts a regular expression object Textualize/rich#3347

Added

  • Adds a case_sensitive parameter to prompt.Prompt. This determines if the response is treated as case-sensitive. Defaults to True.
  • Added Console.on_broken_pipe Textualize/rich#3468
Commits

Updates pyyaml from 6.0.1 to 6.0.2

Release notes

Sourced from pyyaml's releases.

6.0.2

What's Changed

  • Support for Cython 3.x and Python 3.13.

Full Changelog: yaml/pyyaml@6.0.1...6.0.2

6.0.2rc1

  • Support for extension build with Cython 3.x
  • Support for Python 3.13
  • Added PyPI wheels for musllinux on aarch64
Changelog

Sourced from pyyaml's changelog.

6.0.2 (2024-08-06)

Commits

Updates regex from 2024.7.24 to 2024.9.11

Changelog

Sourced from regex's changelog.

Version: 2024.9.14

Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them.

Version: 2024.9.13

Updated to actions/upload-artifact@v4 in main.yml.

Version: 2024.9.12

Updated to actions/download-artifact@v4 in main.yml.

Version: 2024.9.11

Updated to Unicode 16.0.0.

Version: 2024.7.24

Git issue 539: Bug: Partial matching fails on a simple example

Version: 2024.6.22

Git issue 535: Regex fails Unicode 15.1 GraphemeBreakTest due to missing new GB9c rule implementation

Version: 2024.5.15

Git issue 530: hangs with fuzzy and optionals

It's not hanging, it'll finish eventually. It's just an example of catastrophic backtracking.

The error printed when Ctrl+C is pressed does show a bug, though, which is now fixed.

Version: 2024.5.10

Updated for Python 3.13.

<time.h> now needs to be included explicitly because Python.h no longer includes it.

Version: 2024.4.28

Git issue 527: `VERBOSE`/`X` flag breaks `\N` escapes

Version: 2024.4.16

Git issue 525: segfault when fuzzy matching empty list

Version: 2023.12.25

Cannot get release notification action in main.yml to work. Commenting it out for now.

... (truncated)

Commits

Updates importlib-resources from 6.4.0 to 6.4.5

Changelog

Sourced from importlib-resources's changelog.

v6.4.5

Bugfixes

  • Omit sentinel values from a namespace path. (#311)

v6.4.4

No significant changes.

v6.4.3

Bugfixes

  • When inferring the caller in files()python/cpython#123085

v6.4.2

Bugfixes

  • Merged fix for UTF-16 BOM handling in functional tests. (#312)

v6.4.1

Bugfixes

  • python/cpython#121735
Commits
  • 284148b Finalize
  • 63a7bcb Merge pull request #315 from python/bugfix/311-non-path-namespace-paths
  • 2c145c5 Omit sentinel values from a namespace path.
  • 47d73b1 Add test capturing failure when resolving the MultiplexedPath for a namespace...
  • 4875bc5 Add type annotations for _candidate_paths
  • d84ca37 Fix typo in _temp_path comment.
  • 1a6fef2 Merge https://github.com/jaraco/skeleton
  • 790fa6e Include the trailing slash in disable_error_code(overload-overlap), also requ...
  • 2beb8b0 Add support for linking usernames.
  • 0c326f3 Add a degenerate nitpick_ignore for downstream consumers. Add a 'local' comme...
  • Additional commits viewable in compare view

Updates torchmetrics from 1.4.1 to 1.4.2

Release notes

Sourced from torchmetrics's releases.

Minor patch release

[1.4.2] - 2022-09-12

Added

  • Re-adding Chrf implementation (#2701)

Fixed

  • Fixed wrong aggregation in segmentation.MeanIoU (#2698)
  • Fixed handling zero division error in binary IoU (Jaccard index) calculation (#2726)
  • Corrected the padding related calculation errors in SSIM (#2721)
  • Fixed compatibility of audio domain with new scipy (#2733)
  • Fixed how prefix/postfix works in MultitaskWrapper (#2722)
  • Fixed flakiness in tests related to torch.unique with dim=None (#2650)

Key Contributors

@​Borda, @​petertheprocess, @​rittik9, @​SkafteNicki, @​vkinakh

If we forgot someone due to not matching commit email with GitHub account, let us know :]


Full Changelog: Lightning-AI/torchmetrics@v1.4.1...v1.4.2

Changelog

Sourced from torchmetrics's changelog.

[1.4.2] - 2022-09-12

Added

  • Re-adding Chrf implementation (#2701)

Fixed

  • Fixed wrong aggregation in segmentation.MeanIoU (#2698)

  • Fixed handling zero division error in binary IoU (Jaccard index) calculation (#2726)

  • Corrected the padding related calculation errors in SSIM (#2721)

  • Fixed compatibility of audio domain with new scipy (#2733)

  • Fixed how prefix/postfix works in MultitaskWrapper (#2722)

  • Fixed flakiness in tests related to torch.unique with dim=None (#2650)

  • Fixed corner case in MatthewsCorrCoef (#2743)

Commits

Updates types-pyyaml from 6.0.12.20240724 to 6.0.12.20240917

Commits

Updates wandb from 0.17.5 to 0.17.9

Release notes

Sourced from wandb's releases.

v0.17.9

What's Changed

Changed

  • Changed the default system metrics sampling interval to 10 seconds without averaging, while allowing custom intervals via wandb.init(settings=wandb.Settings(_stats_sampling_interval=...)) (@​dmitryduev in wandb/wandb#8208)

Deprecated

  • define_metric(summary='best', goal=...) is deprecated and soon will be removed, use define_metric(summary='min') or define_metric(summary='min') instead (@​kptkin in wandb/wandb#8219)

v0.17.8

What's Changed

Added

Fixed

Deprecated

  • Ability to disable the service process (WANDB__DISABLE_SERVICE) is deprecated and will be removed in the next minor release (@​kptkin in wandb/wandb#8193)

v0.17.7

What's Changed

Fixed

v0.17.6

What's Changed

Added

... (truncated)

Changelog

Sourced from wandb's changelog.

[0.17.9] - 2024-09-05

Changed

  • Changed the default system metrics sampling interval to 10 seconds without averaging, while allowing custom intervals via wandb.init(settings=wandb.Settings(_stats_sampling_interval=...)) (@​dmitryduev in wandb/wandb#8208)

Deprecated

  • define_metric(summary='best', goal=...) is deprecated and soon will be removed, use define_metric(summary='min') or define_metric(summary='min') instead (@​kptkin in wandb/wandb#8219)

[0.17.8] - 2024-08-28

Added

Fixed

Deprecated

  • Ability to disable the service process (WANDB__DISABLE_SERVICE) is deprecated and will be removed in the next minor release (@​kptkin in wandb/wandb#8193)

[0.17.7] - 2024-08-15

Fixed

[0.17.6] - 2024-08-08

Added

Changed

... (truncated)

Commits
  • a4d1db2 Bump version and update CHANGELOG for release 0.17.9
  • 8902eeb fix: skip underscorred nvidia gpu metrics (#8285)
  • 6b2a270 chore(launch): disable tests/unit_tests/test_launch/test_inputs/test_internal...
  • 658df9e refactor(sdk): recover panics in defer goroutines (#8271)
  • 2317ee0 chore(sdk): bump quinn-proto from 0.11.6 to 0.11.8 in /nvidia_gpu_stats (#8269)
  • abb00ac chore(sdk): update dependabot configuration (#8270)
  • e152a97 chore(sdk): move viz from top level (#8258)
  • fc40425 fix(sdk): don't block in some Sender defer steps (#8267)
  • 139301f refactor(sdk): do FileTransferStats.SetDone() in Sender (#8266)
  • 7204a13 refactor(sdk): rename AddRecord -> AddWork (#8265)
  • Additional commits viewable in compare view

Updates pytest from 8.3.2 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
Commits

Bumps the dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [torch](https://github.com/pytorch/pytorch) | `2.4.0` | `2.4.1` |
| [typer-slim](https://github.com/fastapi/typer) | `0.12.3` | `0.12.5` |
| [rich](https://github.com/Textualize/rich) | `13.7.1` | `13.8.1` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.1` | `6.0.2` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2024.7.24` | `2024.9.11` |
| [importlib-resources](https://github.com/python/importlib_resources) | `6.4.0` | `6.4.5` |
| [torchmetrics](https://github.com/Lightning-AI/torchmetrics) | `1.4.1` | `1.4.2` |
| [types-pyyaml](https://github.com/python/typeshed) | `6.0.12.20240724` | `6.0.12.20240917` |
| [wandb](https://github.com/wandb/wandb) | `0.17.5` | `0.17.9` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |



Updates `torch` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/pytorch/pytorch/releases)
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md)
- [Commits](pytorch/pytorch@v2.4.0...v2.4.1)

Updates `typer-slim` from 0.12.3 to 0.12.5
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.12.3...0.12.5)

Updates `rich` from 13.7.1 to 13.8.1
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.7.1...v13.8.1)

Updates `pyyaml` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
- [Commits](yaml/pyyaml@6.0.1...6.0.2)

Updates `regex` from 2024.7.24 to 2024.9.11
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2024.7.24...2024.9.11)

Updates `importlib-resources` from 6.4.0 to 6.4.5
- [Release notes](https://github.com/python/importlib_resources/releases)
- [Changelog](https://github.com/python/importlib_resources/blob/main/NEWS.rst)
- [Commits](python/importlib_resources@v6.4.0...v6.4.5)

Updates `torchmetrics` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/Lightning-AI/torchmetrics/releases)
- [Changelog](https://github.com/Lightning-AI/torchmetrics/blob/master/CHANGELOG.md)
- [Commits](Lightning-AI/torchmetrics@v1.4.1...v1.4.2)

Updates `types-pyyaml` from 6.0.12.20240724 to 6.0.12.20240917
- [Commits](https://github.com/python/typeshed/commits)

Updates `wandb` from 0.17.5 to 0.17.9
- [Release notes](https://github.com/wandb/wandb/releases)
- [Changelog](https://github.com/wandb/wandb/blob/main/CHANGELOG.md)
- [Commits](wandb/wandb@v0.17.5...v0.17.9)

Updates `pytest` from 8.3.2 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.3)

---
updated-dependencies:
- dependency-name: torch
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typer-slim
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pyyaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: importlib-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: torchmetrics
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: types-pyyaml
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: wandb
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Oct 1, 2024
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.

0 participants