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-others group across 1 directory with 11 updates #4077

Merged
merged 2 commits into from
Oct 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the pip-others group with 11 updates in the / directory:

Package From To
rich 13.8.0 13.9.3
psutil 6.0.0 6.1.0
ftfy 6.2.3 6.3.1
regex 2024.7.24 2024.9.11
importlib-resources 6.4.4 6.4.5
tox 4.18.1 4.23.2
transformers 4.44.2 4.46.0
diffusers 0.30.0 0.31.0
oss2 2.19.0 2.19.1
ipython 8.27.0 8.29.0
mlflow 2.16.0 2.17.1

Updates rich from 13.8.0 to 13.9.3

Release notes

Sourced from rich's releases.

The irregular expression release

Fix a broken regex that resulted in the slow path being chosen for some operations. This fix should result in notable speedups for some operations, such as wrapping text.

[13.9.3] - 2024-10-22

Fixed

The Splitting segments Release

A hotfix for highlighting in the table, and a fix for Segment.split_cells

[13.9.2] - 2024-10-04

Fixed

Hotfix for dependency issue

[13.9.1] - 2024-10-01

Fixed

  • Fixed typing_extensions dependency

The so long Python 3.7 release

This version adds support for fine-grained information in tracebacks. In other words, it will highlight columns in tracebacks (for supported Python versions). Here's an example:

This version also drops support for Python 3.7, which has long since reached its EOL. If you are stuck on Python3.7 for any reason, you will not be able to upgrade to this version, but nothing should break.

See below for other changes in this release.

[13.9.0] - 2024-10-01

Changed

Fixed

The Python 3.13 release

[13.8.1] - 2024-09-10

... (truncated)

Changelog

Sourced from rich's changelog.

[13.9.3] - 2024-10-22

Fixed

[13.9.2] - 2024-10-04

Fixed

[13.9.1] - 2024-10-01

Fixed

  • Fixed typing_extensions dependency

[13.9.0] - 2024-10-01

Changed

Fixed

[13.8.1] - 2024-09-10

Fixed

Commits

Updates psutil from 6.0.0 to 6.1.0

Changelog

Sourced from psutil's changelog.

6.1.0

2024-10-17

Enhancements

  • 2366_, [Windows]: drastically speedup process_iter(). We now determine process unique identity by using process "fast" create time method. This will considerably speedup those apps which use process_iter() only once, e.g. to look for a process with a certain name.
  • 2446_: use pytest instead of unittest.
  • 2448_: add make install-sysdeps target to install the necessary system dependencies (python-dev, gcc, etc.) on all supported UNIX flavors.
  • 2449_: add make install-pydeps-test and make install-pydeps-dev targets. They can be used to install dependencies meant for running tests and for local development. They can also be installed via pip install .[test] and pip install .[dev].
  • 2456_: allow to run tests via python3 -m psutil.tests even if pytest module is not installed. This is useful for production environments that don't have pytest installed, but still want to be able to test psutil installation.

Bug fixes

  • 2427_: psutil (segfault) on import in the free-threaded (no GIL) version of Python 3.13. (patch by Sam Gross)
  • 2455_, [Linux]: IndexError may occur when reading /proc/pid/stat and field 40 (blkio_ticks) is missing.
  • 2457_, [AIX]: significantly improve the speed of Process.open_files()_ for some edge cases.
  • 2460_, [OpenBSD]: Process.num_fds()_ and Process.open_files()_ may fail with NoSuchProcess_ for PID 0. Instead, we now return "null" values (0 and [] respectively).
Commits
  • fb68f9f pre release
  • 567438c [Windows] speed up process_iter() (#2444)
  • b1a7593 Use pytest.skip instead of unittest.SkipTest (#2461)
  • b19d5bd AIX: improve open_files() regexp speed (#2457)
  • 223938f Use @pytest.mark.skipif decorator instead of @unittest.skipIf (#2459)
  • f65fe44 [OpenBSD] Process num_fds() and open_files() may raise NSP for PID 0 (#2460)
  • 0a71d0e enable ruff cache (faster)
  • 4649a88 Run tests without pytests (#2456)
  • 80af879 revert change which broke python 2 tests
  • 4e85bee change call_until() signature so that it can be used with lambda
  • Additional commits viewable in compare view

Updates ftfy from 6.2.3 to 6.3.1

Release notes

Sourced from ftfy's releases.

v6.3.1

No release notes provided.

v6.3.0

  • Switched packaging from poetry to uv.
  • Uses modern Python packaging exclusively (no setup.py).
  • Added support for mojibake in Windows-1257 (Baltic).
  • Detects mojibake for "Ü" in an uppercase word, such as "ZURÜCK".
  • Expanded a heuristic that notices improbable punctuation.
  • Fixed a false positive involving two concatenated strings, one of which began with the § sign.
  • Rewrote chardata.py to be more human-readable and debuggable, instead of being full of keysmash-like character sets.

See CHANGELOG.md for the full changelog.

Trusted Publishing is now supposed to create these releases on GitHub at the same time that it publishes to PyPI, following the user guide. It didn't, but it's supposed to.

I think I've fixed the problem (upgrading to sigstore/gh-action-sigstore-python@v3.0.0 from the broken v2.1.1), and maybe future releases really will be as simple as pushing a tag.

Changelog

Sourced from ftfy's changelog.

Version 6.3.1 (October 25, 2024)

  • Fixed license metadata field in pyproject.toml.
  • Removed extraneous files from the hatchling sdist output.

Version 6.3.0 (October 8, 2024)

  • Switched packaging from poetry to uv.
  • Uses modern Python packaging exclusively (no setup.py).
  • Added support for mojibake in Windows-1257 (Baltic).
  • Detects mojibake for "Ü" in an uppercase word, such as "ZURÜCK".
  • Expanded a heuristic that notices improbable punctuation.
  • Fixed a false positive involving two concatenated strings, one of which began with the § sign.
  • Rewrote chardata.py to be more human-readable and debuggable, instead of being full of keysmash-like character sets.
Commits
  • 5340af6 version number updates
  • 5961126 packaging updates for v6.3.1
  • cbb28da fix outdated/irrelevant parts of publish.yml
  • 38b9667 replace my publish config with the guide
  • 8ac691c try to fix github publishing
  • 8b79131 back out support for cp850, it doesn't work well
  • 1c185ef Add more test cases
  • aa434cf support cp850 mojibake
  • 7ff0548 BULLET doesn't belong in utf8_continuation_strict
  • 87afc6f make chardata.py more readable
  • Additional commits viewable in compare view

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.4 to 6.4.5

Changelog

Sourced from importlib-resources's changelog.

v6.4.5

Bugfixes

  • Omit sentinel values from a namespace path. (#311)
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 tox from 4.18.1 to 4.23.2

Release notes

Sourced from tox's releases.

4.23.2

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.23.1...4.23.2

4.23.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.23.0...4.23.1

4.23.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.22.0...4.23.0

4.22.0

What's Changed

Full Changelog: tox-dev/tox@4.21.2...4.22.0

4.21.2

... (truncated)

Changelog

Sourced from tox's changelog.

v4.23.2 (2024-10-22)

Misc - 4.23.2

- :issue:`3415`

v4.23.1 (2024-10-21)

Improved Documentation - 4.23.1

  • Fix bad example in documentation for dependency groups - by :user:gaborbernat. (:issue:3240)

v4.23.0 (2024-10-16)

Features - 4.23.0

- Add ``NETRC`` to the list of environment variables always passed through. (:issue:`3410`)

Improved Documentation - 4.23.0

  • replace [tool.pyproject] and [tool.tox.pyproject] with [tool.tox] in config.rst (:issue:3411)

v4.22.0 (2024-10-15)

Features - 4.22.0

- Implement dependency group support as defined in :pep:`735` - see :ref:`dependency_groups` - by :user:`gaborbernat`. (:issue:`3408`)

v4.21.2 (2024-10-03)

Bugfixes - 4.21.2

  • Include tox.toml in sdist archives to fix test failures resulting from its lack.
    • by :user:mgorny (:issue:3389)

v4.21.1 (2024-10-02)

Bugfixes - 4.21.1

- Fix error when using ``requires`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3386`)
- Fix error when using ``deps`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3387`)
- Multiple fixes for the TOML configuration by :user:`gaborbernat`.:
  • Do not fail when there is an empty command within commands. </tr></table>

... (truncated)

Commits

Updates transformers from 4.44.2 to 4.46.0

Release notes

Sourced from transformers's releases.

Release v4.46.0

New model additions

Moshi

The Moshi model was proposed in Moshi: a speech-text foundation model for real-time dialogue by Alexandre Défossez, Laurent Mazaré, Manu Orsini, Amélie Royer, Patrick Pérez, Hervé Jégou, Edouard Grave and Neil Zeghidour.

Moshi is a speech-text foundation model that casts spoken dialogue as speech-to-speech generation. Starting from a text language model backbone, Moshi generates speech as tokens from the residual quantizer of a neural audio codec, while modeling separately its own speech and that of the user into parallel streams. This allows for the removal of explicit speaker turns, and the modeling of arbitrary conversational dynamics. Moshi also predicts time-aligned text tokens as a prefix to audio tokens. This “Inner Monologue” method significantly improves the linguistic quality of generated speech and provides streaming speech recognition and text-to-speech. As a result, Moshi is the first real-time full-duplex spoken large language model, with a theoretical latency of 160ms, 200ms in practice.

image

Zamba

Zamba-7B-v1 is a hybrid between state-space models (Specifically Mamba) and transformer, and was trained using next-token prediction. Zamba uses a shared transformer layer after every 6 mamba blocks. It uses the Mistral v0.1 tokenizer. We came to this architecture after a series of ablations at small scales. Zamba-7B-v1 was pre-trained on 1T tokens of text and code data.

GLM

The GLM Model was proposed in ChatGLM: A Family of Large Language Models from GLM-130B to GLM-4 All Tools by GLM Team, THUDM & ZhipuAI.

The abstract from the paper starts with the following:

We introduce ChatGLM, an evolving family of large language models that we have been developing over time. This report primarily focuses on the GLM-4 language series, which includes GLM-4, GLM-4-Air, and GLM-4-9B.

image

Idefics 3

The Idefics3 model was proposed in Building and better understanding vision-language models: insights and future directions by Hugo Laurençon, Andrés Marafioti, Victor Sanh, and Léo Tronchon.

... (truncated)

Commits

Updates diffusers from 0.30.0 to 0.31.0

Release notes

Sourced from diffusers's releases.

v0.31.0: Stable Diffusion 3.5 Large, CogView3, Quantization, Training Scripts, and more

Stable Diffusion 3.5 Large

Stability AI’s latest text-to-image generation model is Stable Diffusion 3.5 Large. SD3.5 Large is the next iteration of Stable Diffusion 3. It comes with two checkpoints (both of which have 8B params):

  • A regular one
  • A timestep-distilled one enabling few-step inference

Make sure to fill up the form by going to the model page, and then run huggingface-cli login before running the code below.

# make sure to update diffusers
# pip install -U diffusers
import torch
from diffusers import StableDiffusion3Pipeline
pipe = StableDiffusion3Pipeline.from_pretrained(
"stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16
).to("cuda")
image = pipe(
prompt="a photo of a cat holding a sign that says hello world",
negative_prompt="",
num_inference_steps=40,
height=1024,
width=1024,
guidance_scale=4.5,
).images[0]
image.save("sd3_hello_world.png")

Follow the documentation to know more.

Cogview3-plus

We added a new text-to-image model, Cogview3-plus, from the THUDM team! The model is DiT-based and supports image generation from 512 to 2048px. Thanks to @​zRzRzRzRzRzRzR for contributing it!

from diffusers import CogView3PlusPipeline
import torch
pipe = CogView3PlusPipeline.from_pretrained("THUDM/CogView3-Plus-3B", torch_dtype=torch.float16).to("cuda")
Enable it to reduce GPU memory usage
pipe.enable_model_cpu_offload()
pipe.vae.enable_slicing()
pipe.vae.enable_tiling()
</tr></table>

... (truncated)

Commits

Updates oss2 from 2.19.0 to 2.19.1

Changelog

Sourced from oss2's changelog.

Version 2.19.1

  • 更新: bucket cors 接口支持设置response vary参数
Commits

Updates ipython from 8.27.0 to 8.29.0

Commits

Updates mlflow from 2.16.0 to 2.17.1

Release notes

Sourced from mlflow's releases.

MLflow 2.17.1 is a patch release that includes several major features and improvements

Features:

Bug fixes:

Documentation updates:

Small bug fixes and documentation updates:

#13293, #13510, #13501, #13506, #13446, @​harupy; #13341, #13342, @​WeichenXu123; #13396, @​dvorst; #13535, @​chenmoneygithub; #13503, #13469, #13416, @​B-Step62; #13519, #13516, @​serena-ruan; #13504, @​sunishsheth2009; #13508, @​KamilStachera; #13397, @​kriscon-db

MLflow 2.17.0

We are excited to announce the release of MLflow 2.17.0! This release includes several enhancements to extend the functionality of MLflow's ChatModel interface to further extend its versatility for handling custom GenAI application use cases. Additionally, we've improved the interface within the tracing UI to provide a structured output for retrieved documents, enhancing the ability to read the contents of those documents within the UI. We're also starting the work on improving both the utility and the versatility of MLflow's evaluate functionality for GenAI, initially with support for callable GenAI evaluation metrics.

Major Features and notifications:

  • ChatModel enhancements - As the GenAI-focused 'cousin' of PythonModel, ChatModel is getting some sizable functionality extensions. From native support for tool calling (a requirement for creating a custom agent), simpler conversions to the internal dataclass constructs needed to interface with ChatModel via the introduction of from_dict methods to all data structures, the addition of a metadata field to allow for full input payload customization, handling of the new refusal response type, to the inclusion of the interface type to the response structure to allow for greater integration compatibility. (#13191, #13180, #13143, @​daniellok-db, #13102, #13071, @​BenWilson2)

  • Callable GenAI Evaluation Metrics - As the intial step in a much broader expansion of the functionalities of mlflow.evaluate for GenAI use cases, we've converted the GenAI evaluation metrics to be callable. This allows you to use them directly in packages that support callable GenAI evaluation metrics, as well as making it simpler to debug individual responses when prototyping solutions. #13144, @​serena-ruan)

  • Audio file support in the MLflow UI - You can now directly 'view' audio files that have been logged and listen to them from within the MLflow UI's artifact viewer pane.

  • MLflow AI Gateway is no longer deprecated - We've decided to revert our deprecation for the AI Gateway feature. We had renamed it to the MLflow Deployments Server, but have reconsidered and reverted the naming and namespace back to the original configuration.

Features:

... (truncated)

Changelog

Sourced from mlflow's changelog.

2.17.1 (2024-10-25)

MLflow 2.17.1 includes several major features and improvements

Features:

Bug fixes:

Documentation updates:

Small bug fixes and documentation updates:

#13293, #13510, #13501, #13506, #13446, @​harupy; #13341, #13342, @​WeichenXu123; #13396, @​dvorst; #13535, @​chenmoneygithub; #13503, #13469, #13416, @​B-Step62; #13519, #13516, @​serena-ruan; #13504, @​sunishsheth2009; #13508, @​KamilStachera; #13397, @​kriscon-db

2.17.0 (2024-09-26)

We are excited to announce the release of MLflow 2.17.0! This release includes several enhancements to extend the functionality of MLflow's ChatModel interface to further extend its versatility for handling custom GenAI application use cases. Additionally, we've improved the interface within the tracing UI to provide a structured output for retrieved documents, enhancing the ability to read the contents of those documents within the UI. We're also starting the work on improving both the utility and the versatility of MLflow's evaluate functionality for GenAI, initially with support for callable GenAI evaluation metrics.

Major Features and notifications:

  • ChatModel enhancements - As the GenAI-focused 'cousin' of PythonModel, ChatModel is getting some sizable functionality extensions. From native support for tool calling (a requirement for creating a custom agent), simpler conversions to the internal dataclass constructs needed to interface with ChatModel via the introduction of from_dict methods to all data structures, the addition of a metadata field to allow for full input payload customization, handling of the new refusal response type, to the inclusion of the interface type to the response structure to allow for greater integration compatibility. (#13191, #13180, #13143, @​daniellok-db, #13102, #13071, @​BenWilson2)

  • Callable GenAI Evaluation Metrics - As the intial step in a much broader expansion of the functionalities of mlflow.evaluate for GenAI use cases, we've converted the GenAI evaluation metrics to be callable. This allows you to use them directly in packages that support

... (truncated)

Commits

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-others group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rich](https://github.com/Textualize/rich) | `13.8.0` | `13.9.3` |
| [psutil](https://github.com/giampaolo/psutil) | `6.0.0` | `6.1.0` |
| [ftfy](https://github.com/rspeer/python-ftfy) | `6.2.3` | `6.3.1` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2024.7.24` | `2024.9.11` |
| [importlib-resources](https://github.com/python/importlib_resources) | `6.4.4` | `6.4.5` |
| [tox](https://github.com/tox-dev/tox) | `4.18.1` | `4.23.2` |
| [transformers](https://github.com/huggingface/transformers) | `4.44.2` | `4.46.0` |
| [diffusers](https://github.com/huggingface/diffusers) | `0.30.0` | `0.31.0` |
| [oss2](https://github.com/aliyun/aliyun-oss-python-sdk) | `2.19.0` | `2.19.1` |
| [ipython](https://github.com/ipython/ipython) | `8.27.0` | `8.29.0` |
| [mlflow](https://github.com/mlflow/mlflow) | `2.16.0` | `2.17.1` |



Updates `rich` from 13.8.0 to 13.9.3
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.8.0...v13.9.3)

Updates `psutil` from 6.0.0 to 6.1.0
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-6.0.0...release-6.1.0)

Updates `ftfy` from 6.2.3 to 6.3.1
- [Release notes](https://github.com/rspeer/python-ftfy/releases)
- [Changelog](https://github.com/rspeer/python-ftfy/blob/main/CHANGELOG.md)
- [Commits](rspeer/python-ftfy@v6.2.3...v6.3.1)

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.4 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.4...v6.4.5)

Updates `tox` from 4.18.1 to 4.23.2
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.18.1...4.23.2)

Updates `transformers` from 4.44.2 to 4.46.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.44.2...v4.46.0)

Updates `diffusers` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/huggingface/diffusers/releases)
- [Commits](huggingface/diffusers@v0.30.0...v0.31.0)

Updates `oss2` from 2.19.0 to 2.19.1
- [Release notes](https://github.com/aliyun/aliyun-oss-python-sdk/releases)
- [Changelog](https://github.com/aliyun/aliyun-oss-python-sdk/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/aliyun/aliyun-oss-python-sdk/commits)

Updates `ipython` from 8.27.0 to 8.29.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.27.0...8.29.0)

Updates `mlflow` from 2.16.0 to 2.17.1
- [Release notes](https://github.com/mlflow/mlflow/releases)
- [Changelog](https://github.com/mlflow/mlflow/blob/master/CHANGELOG.md)
- [Commits](mlflow/mlflow@v2.16.0...v2.17.1)

---
updated-dependencies:
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: psutil
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: ftfy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: importlib-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-others
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: transformers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: diffusers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: oss2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-others
- dependency-name: ipython
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
- dependency-name: mlflow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-others
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from samet-akcay as a code owner October 29, 2024 01:49
@dependabot dependabot bot added the DEPENDENCY Any changes in any dependencies (new dep or its version) should be produced via Change Request on PM label Oct 29, 2024
@dependabot dependabot bot requested a review from harimkang as a code owner October 29, 2024 01:49
@dependabot dependabot bot added the python Pull requests that update Python code label Oct 29, 2024
@github-actions github-actions bot added the BUILD label Oct 29, 2024
Copy link

codecov bot commented Oct 29, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 80.41%. Comparing base (31823cd) to head (a182ca3).
Report is 18 commits behind head on develop.

Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #4077      +/-   ##
===========================================
+ Coverage    77.11%   80.41%   +3.29%     
===========================================
  Files          308      319      +11     
  Lines        30571    31622    +1051     
===========================================
+ Hits         23576    25430    +1854     
+ Misses        6995     6192     -803     
Flag Coverage Δ
py310 80.09% <ø> (+2.98%) ⬆️
py311 80.41% <ø> (+3.36%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

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

@eunwoosh eunwoosh merged commit 1632be1 into develop Oct 30, 2024
22 checks passed
@eunwoosh eunwoosh deleted the dependabot/pip/pip-others-fb6c4d4881 branch October 30, 2024 00:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BUILD DEPENDENCY Any changes in any dependencies (new dep or its version) should be produced via Change Request on PM python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants