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 with 9 updates #205

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 9 updates:

Package From To
torch 2.2.0 2.2.1
tokenizers 0.15.1 0.15.2
pytorch-lightning 2.1.3 2.1.4
rich 13.7.0 13.7.1
importlib-resources 6.1.1 6.1.2
torchmetrics 1.3.0.post0 1.3.1
levenshtein 0.24.0 0.25.0
wandb 0.16.2 0.16.3
pytest 8.0.0 8.0.2

Updates torch from 2.2.0 to 2.2.1

Release notes

Sourced from torch's releases.

PyTorch 2.2.1 Release, bug fix release

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

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

Commits

Updates tokenizers from 0.15.1 to 0.15.2

Release notes

Sourced from tokenizers's releases.

v0.15.2

What's Changed

Big shoutout to @​rlrs for the fast replace normalizers PR. This boosts the performances of the tokenizers: image

New Contributors

Full Changelog: huggingface/tokenizers@v0.15.1...v0.15.2rc1

Commits

Updates pytorch-lightning from 2.1.3 to 2.1.4

Release notes

Sourced from pytorch-lightning's releases.

Minor patch release v2.1.4

Fabric

Fixed

  • Fixed an issue preventing Fabric to run on CPU when the system's CUDA driver is outdated or broken (#19234)
  • Fixed typo in kwarg in SpikeDetection (#19282)

PyTorch

Fixed

  • Fixed Trainer not expanding the default_root_dir if it has the ~ (home) prefix (#19179)
  • Fixed warning for Dataloader if num_workers=1 and CPU count is 1 (#19224)
  • Fixed WandbLogger.watch() method annotation to accept None for the log parameter (#19237)
  • Fixed an issue preventing the Trainer to run on CPU when the system's CUDA driver is outdated or broken (#19234)
  • Fixed an issue with the ModelCheckpoint callback not saving relative symlinks with ModelCheckpoint(save_last="link") (#19303)
  • Fixed issue where the _restricted_classmethod_impl would incorrectly raise a TypeError on inspection rather than on call (#19332)
  • Fixed exporting __version__ in __init__ (#19221)

Full Changelog: Lightning-AI/pytorch-lightning@2.1.3...2.1.4

Contributors

@​andyland @​asingh9530 @​awaelchli @​Borda @​daturkel @​dipta007 @​lauritsf @​mjbommar @​shenmishajing @​tchaton

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

Commits

Updates rich from 13.7.0 to 13.7.1

Release notes

Sourced from rich's releases.

v13.7.1

Fixes some character widths

[13.7.1] - 2023-02-28

Fixed

Changelog

Sourced from rich's changelog.

[13.7.1] - 2023-02-28

Fixed

Commits

Updates importlib-resources from 6.1.1 to 6.1.2

Changelog

Sourced from importlib-resources's changelog.

v6.1.2

Bugfixes

  • Fixed NotADirectoryError when calling files on a subdirectory of a namespace package. (#293)
Commits
  • 131906a Finalize
  • 3f49de3 Merge pull request #293 from sfc-gh-wzhao/wzhao-fix-files-not-a-directory-whe...
  • 76145e2 Use bytes ranges instead of bytes literals.
  • d98c558 Added changelog
  • 168f617 Updated the contents of the binary files in the subdirectories so there's les...
  • 6c9b190 Change the assertions for test_join_path to assert that the subdirectory is a...
  • b68509f 👹 Feed the hobgoblins (delint).
  • d93e241 Fix NotADirectory error when calling files on a submodule of a zipped namespa...
  • eec758b Merge pull request #296 from python/refactor/compat-package
  • 3736845 Remove flake8 exclusion and remove unused imports.
  • Additional commits viewable in compare view

Updates torchmetrics from 1.3.0.post0 to 1.3.1

Release notes

Sourced from torchmetrics's releases.

Minor patch release

[1.3.1] - 2024-02-12

Fixed

  • Fixed how backprop is handled in LPIPS metric (#2326)
  • Fixed MultitaskWrapper not being able to be logged in lightning when using metric collections (#2349)
  • Fixed high memory consumption in Perplexity metric (#2346)
  • Fixed cached network in FeatureShare not being moved to the correct device (#2348)
  • Fix naming of statistics in MeanAveragePrecision with custom max det thresholds (#2367)
  • Fixed custom aggregation in retrieval metrics (#2364)
  • Fixed initialize aggregation metrics with default floating type (#2366)
  • Fixed plotting of confusion matrices (#2358)

Full Changelog: Lightning-AI/torchmetrics@v1.3.0...v1.3.1

Key Contributors

@​Borda, @​fschlatt, @​JonasVerbickas, @​nsmlzl, @​SkafteNicki

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

Changelog

Sourced from torchmetrics's changelog.

[1.3.1] - 2024-02-12

Fixed

  • Fixed how backprop is handled in LPIPS metric (#2326)
  • Fixed MultitaskWrapper not being able to be logged in lightning when using metric collections (#2349)
  • Fixed high memory consumption in Perplexity metric (#2346)
  • Fixed cached network in FeatureShare not being moved to the correct device (#2348)
  • Fix naming of statistics in MeanAveragePrecision with custom max det thresholds (#2367)
  • Fixed custom aggregation in retrieval metrics (#2364)
  • Fixed initialize aggregation metrics with default floating type (#2366)
  • Fixed plotting of confusion matrices (#2358)

[1.3.0] - 2024-01-10

Added

  • Added more tokenizers for SacreBLEU metric (#2068)
  • Added support for logging MultiTaskWrapper directly with lightnings log_dict method (#2213)
  • Added FeatureShare wrapper to share submodules containing feature extractors between metrics (#2120)
  • Added new metrics to image domain:
    • SpatialDistortionIndex (#2260)
    • Added CriticalSuccessIndex (#2257)
    • Spatial Correlation Coefficient (#2248)
  • Added average argument to multiclass versions of PrecisionRecallCurve and ROC (#2084)
  • Added confidence scores when extended_summary=True in MeanAveragePrecision (#2212)
  • Added RetrievalAUROC metric (#2251)
  • Added aggregate argument to retrieval metrics (#2220)
  • Added utility functions in segmentation.utils for future segmentation metrics (#2105)

Changed

  • Changed minimum supported Pytorch version from 1.8 to 1.10 (#2145)
  • Changed x-/y-axis order for PrecisionRecallCurve to be consistent with scikit-learn (#2183)

Deprecated

  • Deprecated metric._update_called (#2141)
  • Deprecated specicity_at_sensitivity in favour of specificity_at_sensitivity (#2199)

Fixed

  • Fixed support for half precision + CPU in metrics requiring topk operator (#2252)
  • Fixed warning incorrectly being raised in Running metrics (#2256)
  • Fixed integration with custom feature extractor in FID metric (#2277)

... (truncated)

Commits
  • cdbecce releasing 1.3.1
  • 2c3629a Fix backprop in LPIPS (#2326)
  • 2ae0c8b Improve confusion matrix plotting (#2358)
  • cba48a2 Fix multitask wrapper not being logged in lightning when used together with c...
  • 38d6375 Fix naming of statistics in MeanAveragePrecision with custom max det thresh...
  • f9f1842 fix ignored custom callable in retrieval metric aggregation (#2364)
  • dd4ce92 Initialize aggregation metrics with default floating type (#2366)
  • 91902b7 ci: patch run with no tests (#2362)
  • 567564c Memory optimization of perplexity metric (#2346)
  • 23204d6 docs: Update implement.rst (#2345)
  • Additional commits viewable in compare view

Updates levenshtein from 0.24.0 to 0.25.0

Release notes

Sourced from levenshtein's releases.

Release 0.25.0

Changed

  • improve type hints
Changelog

Sourced from levenshtein's changelog.

v0.25.0

Changed

  • improve type hints
Commits

Updates wandb from 0.16.2 to 0.16.3

Release notes

Sourced from wandb's releases.

v0.16.3

What's Changed

🪄 Enhancements

🔨 Fixes

📚 Docs

New Contributors

Full Changelog: wandb/wandb@v0.16.2...v0.16.3

Changelog

Sourced from wandb's changelog.

0.16.3 (Feb 6, 2024)

🪄 Enhancements

🔨 Fixes

📚 Docs

New Contributors

Full Changelog: wandb/wandb@v0.16.2...v0.16.3

Commits
  • 23175db Update changelog
  • 2114a00 Bump version to 0.16.3
  • f8625f9 fix(launch): remove deadsnakes from accelerator build step (#6933)
  • 3f0150a feat(core): update go packages (#6908)
  • 07b61fe build(core): package python rust bindings with go binary and use maturin (#6761)
  • f545120 fix(cli): typo in cli.py (#6892)
  • b4553d2 fix(sdk): exercise caution in system monitor when rocm-smi is installed on a ...
  • 8cd0390 fix(artifacts): artifact file upload progress in nexus (#6939)
  • 8e7c389 chore(core): print a message when using wandb-core (#6937)
  • 2165475 fix(sweeps): dont swallow exceptions in pyagent (#6927)
  • Additional commits viewable in compare view

Updates pytest from 8.0.0 to 8.0.2

Release notes

Sourced from pytest's releases.

8.0.2

pytest 8.0.2 (2024-02-24)

Bug Fixes

  • #11895: Fix collection on Windows where initial paths contain the short version of a path (for example c:\PROGRA~1\tests).
  • #11953: Fix an IndexError crash raising from getstatementrange_ast.
  • #12021: Reverted a fix to [--maxfail]{.title-ref} handling in pytest 8.0.0 because it caused a regression in pytest-xdist whereby session fixture teardowns may get executed multiple times when the max-fails is reached.

8.0.1

pytest 8.0.1 (2024-02-16)

Bug Fixes

  • #11875: Correctly handle errors from getpass.getuser{.interpreted-text role="func"} in Python 3.13.
  • #11879: Fix an edge case where ExceptionInfo._stringify_exception could crash pytest.raises{.interpreted-text role="func"}.
  • #11906: Fix regression with pytest.warns{.interpreted-text role="func"} using custom warning subclasses which have more than one parameter in their [__init__]{.title-ref}.
  • #11907: Fix a regression in pytest 8.0.0 whereby calling pytest.skip{.interpreted-text role="func"} and similar control-flow exceptions within a pytest.warns(){.interpreted-text role="func"} block would get suppressed instead of propagating.
  • #11929: Fix a regression in pytest 8.0.0 whereby autouse fixtures defined in a module get ignored by the doctests in the module.
  • #11937: Fix a regression in pytest 8.0.0 whereby items would be collected in reverse order in some circumstances.
Commits
  • 31afeeb Prepare release version 8.0.2
  • 1b00a2f Merge pull request #12025 from pytest-dev/backport-12022-to-8.0.x
  • ff2f66d [8.0.x] Revert "Fix teardown error reporting when --maxfail=1 (#11721)"
  • 8a8eed6 [8.0.x] Fix collection of short paths on Windows (#12024)
  • 74346f0 [8.0.x] Allow Sphinx 7.x (#12005)
  • b7657b4 [8.0.x] Disallow Sphinx 6 and 7 (#12001)
  • feb7c5e Merge pull request #11999 from pytest-dev/backport-11996-to-8.0.x
  • 0909655 [8.0.x] code: fix IndexError crash in getstatementrange_ast
  • 68524d4 Merge pull request #11993 from pytest-dev/release-8.0.1
  • d7d320a Prepare release version 8.0.1
  • Additional commits viewable in compare view

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 dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [torch](https://github.com/pytorch/pytorch) | `2.2.0` | `2.2.1` |
| [tokenizers](https://github.com/huggingface/tokenizers) | `0.15.1` | `0.15.2` |
| [pytorch-lightning](https://github.com/Lightning-AI/lightning) | `2.1.3` | `2.1.4` |
| [rich](https://github.com/Textualize/rich) | `13.7.0` | `13.7.1` |
| [importlib-resources](https://github.com/python/importlib_resources) | `6.1.1` | `6.1.2` |
| [torchmetrics](https://github.com/Lightning-AI/torchmetrics) | `1.3.0.post0` | `1.3.1` |
| [levenshtein](https://github.com/rapidfuzz/Levenshtein) | `0.24.0` | `0.25.0` |
| [wandb](https://github.com/wandb/wandb) | `0.16.2` | `0.16.3` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.0.0` | `8.0.2` |


Updates `torch` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/pytorch/pytorch/releases)
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md)
- [Commits](pytorch/pytorch@v2.2.0...v2.2.1)

Updates `tokenizers` from 0.15.1 to 0.15.2
- [Release notes](https://github.com/huggingface/tokenizers/releases)
- [Changelog](https://github.com/huggingface/tokenizers/blob/main/RELEASE.md)
- [Commits](huggingface/tokenizers@v0.15.1...v0.15.2)

Updates `pytorch-lightning` from 2.1.3 to 2.1.4
- [Release notes](https://github.com/Lightning-AI/lightning/releases)
- [Commits](Lightning-AI/pytorch-lightning@2.1.3...2.1.4)

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

Updates `importlib-resources` from 6.1.1 to 6.1.2
- [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.1.1...v6.1.2)

Updates `torchmetrics` from 1.3.0.post0 to 1.3.1
- [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.3.0.post0...v1.3.1)

Updates `levenshtein` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/rapidfuzz/Levenshtein/releases)
- [Changelog](https://github.com/rapidfuzz/Levenshtein/blob/main/HISTORY.md)
- [Commits](rapidfuzz/Levenshtein@v0.24.0...v0.25.0)

Updates `wandb` from 0.16.2 to 0.16.3
- [Release notes](https://github.com/wandb/wandb/releases)
- [Changelog](https://github.com/wandb/wandb/blob/main/CHANGELOG.md)
- [Commits](wandb/wandb@v0.16.2...v0.16.3)

Updates `pytest` from 8.0.0 to 8.0.2
- [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.0.0...8.0.2)

---
updated-dependencies:
- dependency-name: torch
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tokenizers
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytorch-lightning
  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-patch
  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: levenshtein
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Mar 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2024

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

@dependabot dependabot bot closed this Apr 1, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev/dependencies-1b2e6de1d4 branch April 1, 2024 05:54
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