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 #4061

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 23, 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.0
regex 2024.7.24 2024.9.11
importlib-resources 6.4.4 6.4.5
tox 4.18.1 4.23.2
onnx 1.16.2 1.17.0
transformers 4.44.2 4.45.2
diffusers 0.30.0 0.31.0
ipython 8.27.0 8.28.0
mlflow 2.16.0 2.17.0

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.0

Release notes

Sourced from ftfy's releases.

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/[email protected] 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.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
  • 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
  • 6760b44 fix link
  • 76fa9e5 try to configure readthedocs for uv
  • d15ac27 update docs for windows-1257
  • 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 onnx from 1.16.2 to 1.17.0

Release notes

Sourced from onnx's releases.

v1.17.0

ONNX v1.17.0 is now available with exciting new features! We would like to thank everyone who contributed to this release! Please visit onnx.ai to learn more about ONNX and associated projects.

Key Updates

ai.onnx Opset 22

Python Changes

  • Support for numpy >= 2.0

Bug fixes and infrastructure improvements

  • Fix Check URLs errors 5972
  • Use CMAKE_PREFIX_PATH in finding libprotobuf 5975
  • Bump main VERSION_NUMBER to 1.17.0 5968
  • Fix source and pip tar.gz builds on s390x systems 5984
  • Fix unique_name 5992
  • Fix SegFault bug in shape inference 5990
  • Fix onnx.compose when connecting subgraphs 5991
  • Fix conversion from split 11 to split 18 6020
  • Update error messages for NegativeLogLikelihoodLoss inference function 6021
  • Generalize input/output number check in shape inference 6005
  • Replace rank inference with shape inference for Einsum op 6010
  • build from source instruction with latest cmake change 6038
  • Handle OneHot's depth value during shape inference 5963
  • Not to install cmake in pyproject.toml on Windows 6045
  • fix a skipped shape infer code 6049
  • Include the ".onnxtext" extension in supported serialization format 6051
  • Allow ReferenceEvaluator to return intermediate results 6066
  • Fix 1 typo in numpy_helper.py 6041
  • Remove benchmarking code 6076
  • Prevent crash on import after GCC 8 builds 6048
  • Check graph outputs are defined 6083
  • Enable additional ruff rules 6032
  • Add missing shape inference check for DequantizeLinear 6080
  • Add bfloat16 to all relevant ops 6099
  • fix(ci): install python dependencies with --only-binary :all: in manylinux 6120
  • fix: install google-re2 with --only-binary option 6129
  • Specify axis parameter for DequantizeLinear when input rank is 1 6095
  • Pin onnxruntime to 1.17.3 for release CIs 6143
  • Fix INT4 TensorProto byte size is 5x larger than expected with negative values 6161
  • Mitigate tarball directory traversal risks 6164
  • Fix reference implementation for ScatterND with 4D tensors 6174
  • Addition of group > 1 in test and in backend for ConvTranspose 6175
  • Support for bfloat16 for binary, unary operators in reference implementation 6166
  • Refactor windows workflow to work on standard windows 6190
  • Fix a few crashes while running shape inference 6195
  • Update onnx to work with numpy>=2.0 6196
  • Use sets to improve performance of dfs search 6213

... (truncated)

Commits

Updates transformers from 4.44.2 to 4.45.2

Release notes

Sourced from transformers's releases.

Release v4.45.2

Patch release v4.45.2

Mostly some warnings that were not properly removed ⚠️ :

🔴 Had a small regression with dynamic Cache 🔴 *Cache: revert DynamicCache init for BC #33861 by @​gante

A small fix for idefic 🐩 :

And a fix for Siglip 🤧 !

Patch Release v4.45.1

Patches for v4.45.1

Llama 3.2, mllama, Qwen2-Audio, Qwen2-VL, OLMoE, Llava Onevision, Pixtral, FalconMamba, Modular Transformers

New model additions

mllama

The Llama 3.2-Vision collection of multimodal large language models (LLMs) is a collection of pretrained and instruction-tuned image reasoning generative models in 11B and 90B sizes (text + images in / text out). The Llama 3.2-Vision instruction-tuned models are optimized for visual recognition, image reasoning, captioning, and answering general questions about an image. The models outperform many of the available open source and closed multimodal models on common industry benchmarks.

image

Qwen2-VL

The Qwen2-VL is a major update from the previous Qwen-VL by the Qwen team.

An extract from the Qwen2-VL blogpost available here is as follows:

Qwen2-VL is the latest version of the vision language models based on Qwen2 in the Qwen model familities. Compared with Qwen-VL, Qwen2-VL has the capabilities of:

  • SoTA understanding of images of various resolution & ratio: Qwen2-VL achieves state-of-the-art performance on visual understanding benchmarks, including MathVista, DocVQA, RealWorldQA, MTVQA, etc.
  • Understanding videos of 20min+: Qwen2-VL can understand videos over 20 minutes for high-quality video-based question answering, dialog, content creation, etc.
  • Agent that can operate your mobiles, robots, etc.: with the abilities of complex reasoning and decision making, Qwen2-VL can be integrated with devices like mobile phones, robots, etc., for automatic operation based on visual environment and text instructions.
  • Multilingual Support: to serve global users, besides English and Chinese, Qwen2-VL now supports the understanding of texts in different languages inside images, including most European languages, Japanese, Korean, Arabic, Vietnamese, etc.

image

... (truncated)

Commits

Updates diffusers from 0.30.0 to 0.31.0

Commits

Updates ipython from 8.27.0 to 8.28.0

Commits
  • a9c7369 release 8.28.0
  • 0e62e65 What's new and update release tools (#14530)
  • 9b8d0c3 What's new and update release tools
  • 0d3a38c DOC: whatsnew/v8: Update release notes for the Mamba and Micromamba magic com...
  • b912331 Update docs/source/whatsnew/version8.rst
  • d23bee0 Use environment variable to identify conda / mamba (#14515)
  • 06f266d Update docs/source/whatsnew/version8.rst
  • e77bdfa remove json report files (#14529)
  • ea2fce1 [PR]: Make values public (_tb_highlight & _tb_highlight_style) (#14518)
  • ab2053a remove json report files
  • Additional commits viewable in compare view

Updates mlflow from 2.16.0 to 2.17.0

Changelog

Sourced from mlflow's changelog.

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 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:

Bug fixes:

  • [Tracking] Fix tracing for LangGraph (#13215, @​B-Step62)
  • [Tracking] Fix an issue with presigned_url_artifact requests being in the wrong format (#13366, @​WeichenXu123)
  • [Models] Update Databricks dependency extraction functionality to work with the langchain-databricks partner package. (#13266, @​B-Step62)
  • [Model Registry] Fix retry and credential refresh issues with artifact downloads from the model registry (#12935, @​rohitarun-db)
  • [Tracking] Fix LangChain autologging so that langchain-community is not required for partner packages (#13172, @​B-Step62)

... (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 recre...

Description has been truncated

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.0` |
| [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` |
| [onnx](https://github.com/onnx/onnx) | `1.16.2` | `1.17.0` |
| [transformers](https://github.com/huggingface/transformers) | `4.44.2` | `4.45.2` |
| [diffusers](https://github.com/huggingface/diffusers) | `0.30.0` | `0.31.0` |
| [ipython](https://github.com/ipython/ipython) | `8.27.0` | `8.28.0` |
| [mlflow](https://github.com/mlflow/mlflow) | `2.16.0` | `2.17.0` |



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.0
- [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.0)

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 `onnx` from 1.16.2 to 1.17.0
- [Release notes](https://github.com/onnx/onnx/releases)
- [Changelog](https://github.com/onnx/onnx/blob/main/docs/Changelog-ml.md)
- [Commits](onnx/onnx@v1.16.2...v1.17.0)

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

Updates `diffusers` from 0.30.0 to 0.31.0
- [Commits](huggingface/diffusers@v0.30.0...v0.31.0)

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

Updates `mlflow` from 2.16.0 to 2.17.0
- [Changelog](https://github.com/mlflow/mlflow/blob/master/CHANGELOG.md)
- [Commits](mlflow/mlflow@v2.16.0...v2.17.0)

---
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: onnx
  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: 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] <[email protected]>
@dependabot dependabot bot added 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 labels Oct 23, 2024
@github-actions github-actions bot added the BUILD label Oct 23, 2024
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.

0 participants