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 minor-python group in /shared_requirements with 7 updates #3612

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2024

Bumps the minor-python group in /shared_requirements with 7 updates:

Package From To
certifi 2024.7.4 2024.8.30
googleapis-common-protos[grpc] 1.63.2 1.65.0
grpcio-status 1.66.0 1.66.1
grpcio 1.66.0 1.66.1
numpy 2.0.1 2.1.0
pylint 3.2.6 3.2.7
zipp 3.20.0 3.20.1

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates googleapis-common-protos[grpc] from 1.63.2 to 1.65.0

Release notes

Sourced from googleapis-common-protos[grpc]'s releases.

v1.65.0

1.65.0 (2024-08-27)

Features

  • Add field experimental_features to message PythonSettings (#249) (139490f)

v1.64.0

1.64.0 (2024-08-26)

Features

  • Add FieldInfo.referenced_types for generics (2ba3577)

Bug Fixes

  • Un-deprecate Endpoint.aliases field (2ba3577)

Documentation

  • Fix formatting in http.proto comments (2ba3577)
  • Improve MethodSettings selector examples (2ba3577)
  • Reformat comments in context proto (2ba3577)
  • Update ResourceDescriptor.plural docs with AIP-122 nested collections guidance (2ba3577)
Changelog

Sourced from googleapis-common-protos[grpc]'s changelog.

1.65.0 (2024-08-27)

Features

  • Add field experimental_features to message PythonSettings (#249) (139490f)

1.64.0 (2024-08-26)

Features

  • Add FieldInfo.referenced_types for generics (2ba3577)

Bug Fixes

  • Un-deprecate Endpoint.aliases field (2ba3577)

Documentation

  • Fix formatting in http.proto comments (2ba3577)
  • Improve MethodSettings selector examples (2ba3577)
  • Reformat comments in context proto (2ba3577)
  • Update ResourceDescriptor.plural docs with AIP-122 nested collections guidance (2ba3577)
Commits

Updates grpcio-status from 1.66.0 to 1.66.1

Updates grpcio from 1.66.0 to 1.66.1

Release notes

Sourced from grpcio's releases.

Release v1.66.1

This is release gRPC Core 1.66.1 (gladiator).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

Core

Commits
  • e821cdc [Release] Bump version to 1.66.1 (on v1.66.x branch) (#37570)
  • c8ada9c [dualstack] enable EDS dualstack support by default (backport to 1.66.x) (#37...
  • See full diff in compare view

Updates numpy from 2.0.1 to 2.1.0

Release notes

Sourced from numpy's releases.

2.1.0 (Aug 18, 2024)

NumPy 2.1.0 Release Notes

NumPy 2.1.0 provides support for the upcoming Python 3.13 release and drops support for Python 3.9. In addition to the usual bug fixes and updated Python support, it helps get us back into our usual release cycle after the extended development of 2.0. The highlights for this release are:

  • Support for the array-api 2023.12 standard.
  • Support for Python 3.13.
  • Preliminary support for free threaded Python 3.13.

Python versions 3.10-3.13 are supported in this release.

New functions

New function numpy.unstack

A new function np.unstack(array, axis=...) was added, which splits an array into a tuple of arrays along an axis. It serves as the inverse of [numpy.stack]{.title-ref}.

(gh-26579)

Deprecations

  • The fix_imports keyword argument in numpy.save is deprecated. Since NumPy 1.17, numpy.save uses a pickle protocol that no longer supports Python 2, and ignored fix_imports keyword. This keyword is kept only for backward compatibility. It is now deprecated.

    (gh-26452)

  • Passing non-integer inputs as the first argument of [bincount]{.title-ref} is now deprecated, because such inputs are silently cast to integers with no warning about loss of precision.

    (gh-27076)

Expired deprecations

  • Scalars and 0D arrays are disallowed for numpy.nonzero and numpy.ndarray.nonzero.

    (gh-26268)

  • set_string_function internal function was removed and PyArray_SetStringFunction was stubbed out.

... (truncated)

Commits
  • 2f7fe64 Merge pull request #27236 from charris/prepare-2.1.0
  • b6f434f REL: Prepare for the NumPy 2.1.0 release [wheel build]
  • 3cf9394 Merge pull request #27234 from charris/backport-25984
  • 7443dcc Merge pull request #27233 from charris/backport-27223
  • 85b1cab BUG: Allow fitting of degree zero polynomials with Polynomial.fit
  • 395a81d DOC: reword discussion about shared arrays to hopefully be clearer
  • 5af2e96 Move NUMUSERTYPES thread safety discussion to legacy DType API docs
  • d902c24 DOC: add docs on thread safety in NumPy
  • c080180 Merge pull request #27229 from charris/backport-27226
  • 44ce7e8 BUG: Fix PyArray_ZeroContiguousBuffer (resize) with struct dtypes
  • Additional commits viewable in compare view

Updates pylint from 3.2.6 to 3.2.7

Commits
  • a98215b Bump pylint to 3.2.7, update changelog
  • 1deaffa Fix to maintain order of package paths (#9887) (#9897)
  • b4c2951 [Backport maintenance/3.2.x] Fix a crash in undefined-loop-variable with `e...
  • f1925f4 Fix crash in refactoring checker when calling bound lambda (#9867)
  • 7d1626c Fix a false positive unreachable for NoReturn coroutine functions (#9844)...
  • See full diff in compare view

Updates zipp from 3.20.0 to 3.20.1

Changelog

Sourced from zipp's changelog.

v3.20.1

Bugfixes

  • python/cpython#123270
Commits
  • c23e549 Finalize
  • c2b9015 Merge pull request #124 from jaraco/bugfix/gh-123270-supported-names
  • 774a3ac Add TODO to consolidate this behavior in CPython.
  • cc61e61 Prefer simpler path.rstrip to consolidate checks for empty or only paths.
  • bec712f Mark unused code as uncovered.
  • fde82dc Add news fragment.
  • a421f7e Invent DirtyZipInfo to create an unsanitized zipfile with backslashes.
  • 0a3a7b4 Refine expectation that paths with leading slashes are simply not visible.
  • f89b93f Address infinite loop when zipfile begins with more than one leading slash.
  • 3cb5609 Removed SanitizedNames.
  • 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 minor-python group in /shared_requirements with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
| [googleapis-common-protos[grpc]](https://github.com/googleapis/python-api-common-protos) | `1.63.2` | `1.65.0` |
| [grpcio-status](https://grpc.io) | `1.66.0` | `1.66.1` |
| [grpcio](https://github.com/grpc/grpc) | `1.66.0` | `1.66.1` |
| [numpy](https://github.com/numpy/numpy) | `2.0.1` | `2.1.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.6` | `3.2.7` |
| [zipp](https://github.com/jaraco/zipp) | `3.20.0` | `3.20.1` |


Updates `certifi` from 2024.7.4 to 2024.8.30
- [Commits](certifi/python-certifi@2024.07.04...2024.08.30)

Updates `googleapis-common-protos[grpc]` from 1.63.2 to 1.65.0
- [Release notes](https://github.com/googleapis/python-api-common-protos/releases)
- [Changelog](https://github.com/googleapis/python-api-common-protos/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-api-common-protos@v1.63.2...v1.65.0)

Updates `grpcio-status` from 1.66.0 to 1.66.1

Updates `grpcio` from 1.66.0 to 1.66.1
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.66.0...v1.66.1)

Updates `numpy` from 2.0.1 to 2.1.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.0.1...v2.1.0)

Updates `pylint` from 3.2.6 to 3.2.7
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.6...v3.2.7)

Updates `zipp` from 3.20.0 to 3.20.1
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.20.0...v3.20.1)

---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-python
- dependency-name: googleapis-common-protos[grpc]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-python
- dependency-name: grpcio-status
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-python
- dependency-name: grpcio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-python
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-python
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-python
- dependency-name: zipp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-python
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file Python labels Sep 2, 2024
@benhammondmusic benhammondmusic merged commit e54b711 into main Sep 3, 2024
3 checks passed
@benhammondmusic benhammondmusic deleted the dependabot/pip/shared_requirements/minor-python-c3ce7f5c1a branch September 3, 2024 20:20
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant