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 all-dependencies group with 8 updates #32

Merged
merged 1 commit into from
Nov 25, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the all-dependencies group with 8 updates:

Package From To
pydantic 2.9.2 2.10.1
bioregistry 0.11.25 0.11.26
google-api-python-client 2.153.0 2.154.0
pydantic-core 2.23.4 2.27.1
pystow 0.6.0 0.6.1
setuptools 75.5.0 75.6.0
tqdm 4.67.0 4.67.1
wrapt 1.16.0 1.17.0

Updates pydantic from 2.9.2 to 2.10.1

Release notes

Sourced from pydantic's releases.

v2.10.1 2024-11-21

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.10.0...v2.10.2

v2.10.0 2024-11-20

The code released in v2.10.0 is practically identical to that of v2.10.0b2. See the v2.10 release blog post for the highlights!

What's Changed

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.10.1 (2024-11-21)

GitHub release

What's Changed

Packaging

Fixes

New Contributors

v2.10.0 (2024-11-20)

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See the v2.10 release blog post for the highlights!

What's Changed

Packaging

New Features

... (truncated)

Commits
  • 17e60fa spacing
  • 369b355 remove typo
  • 4c75404 Prepare for v2.10.1 release (#10939)
  • e0fc82f Bump pydantic-core version to v2.27.1 (#10938)
  • 30b31da Fix JSON schema title when specified as '' (#10936)
  • 45bd7a7 Fix URL equality with different validation methods (#10934)
  • 6153054 Fix url constraint application (#10922)
  • 71168ba Use the globals of the function when evaluating the return type of serializ...
  • 4def331 Use the parent configuration during schema generation for stdlib dataclasses ...
  • a2acc52 Fix type checking issue with model_fields and model_computed_fields (#10911)
  • Additional commits viewable in compare view

Updates bioregistry from 0.11.25 to 0.11.26

Commits

Updates google-api-python-client from 2.153.0 to 2.154.0

Release notes

Sourced from google-api-python-client's releases.

v2.154.0

2.154.0 (2024-11-19)

Features

Bug Fixes

Commits

Updates pydantic-core from 2.23.4 to 2.27.1

Release notes

Sourced from pydantic-core's releases.

v2.27.1 2024-11-21

What's Changed

Full Changelog: pydantic/pydantic-core@v2.27.0...v2.27.1

v2.27.0 2024-11-12

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-core@v2.26.0...v2.27.0

v2.26.0 2024-11-04

What's Changed

Fixes

Packaging

New Features

New Contributors

Full Changelog: pydantic/pydantic-core@v2.25.1...v2.26.0

v2.25.1 2024-10-30

What's Changed

... (truncated)

Commits

Updates pystow from 0.6.0 to 0.6.1

Commits

Updates setuptools from 75.5.0 to 75.6.0

Changelog

Sourced from setuptools's changelog.

v75.6.0

Features

  • Preserve original PKG-INFO into METADATA when creating wheel (instead of calling wheel.metadata.pkginfo_to_metadata). This helps to be more compliant with the flow specified in PEP 517. (#4701)
  • Changed the WindowsSdkVersion, FrameworkVersion32 and FrameworkVersion64 properties of setuptools.msvc.PlatformInfo to return an empty tuple instead of None as a fallthrough case -- by :user:Avasam (#4754)
Commits
  • bf2ced2 Bump version: 75.5.0 → 75.6.0
  • 8685c80 Empty tuple instead of None for PlatformInfo version properties fallthrough (...
  • 50d671b Rename news fragment
  • 2b471c2 Changed the WindowsSdkVersion, FrameworkVersion32 and ``FrameworkVers...
  • 2c77cd2 Runtime typing fixes for typeshed return type merge (#4753
  • 9a4c8d4 Runtime typing fixes for typeshed return type merge
  • e622859 Preserve original PKG-INFO contents when creating wheel (instead of calling...
  • 0b5b417 Mark tests that may depend on external network
  • a4fa01d Add news fragment
  • 089aca9 Ignore coverage in test code
  • Additional commits viewable in compare view

Updates tqdm from 4.67.0 to 4.67.1

Commits

Updates wrapt from 1.16.0 to 1.17.0

Release notes

Sourced from wrapt's releases.

wrapt-1.17.0

See the project page on the Python Package Index at https://pypi.org/project/wrapt/1.17.0/ for more information.

Changelog

Sourced from wrapt's changelog.

Version 1.17.0

Note that version 1.17.0 drops support for Python 3.6 and 3.7. Python version 3.8 or later is required.

New Features

  • Add __format__() method to ObjectProxy class to allow formatting of wrapped object.

  • Added C extension internal flag to indicate that wrapt should be safe for Python 3.13 free threading mode. Releases will include free threading variants of Python wheels. Note that as free threading is new, one should be cautious about using it in production until it has been more widely tested.

Bugs Fixed

  • When a normal function or builtin function which had wrapt.decorator or a function wrapper applied, was assigned as a class attribute, and the function attribute called via the class or an instance of the class, an additional argument was being passed, inserted as the first argument, which was the class or instance. This was not the correct behaviour and the class or instance should not have been passed as the first argument.

  • When an instance of a callable class object was wrapped which didn't not have a __get__() method for binding, and it was called in context whhere binding would be attempted, it would fail with error that __get__() did not exist when instead it should have been called directly, ignoring that binding was not possible.

  • The __round__ hook for the object proxy didn't accept ndigits argument.

Commits
  • e663d49 Merge branch 'release/1.17.0'
  • 9f4ce79 Update to version 1.17.0 for release.
  • 75f291f Update for release candidate.
  • 1a6b468 Add note about free threading wheel variants.
  • dab7fc2 Try and clear references so GC runs for tests.
  • c13dbf3 Fix up test matrix.
  • 23d3111 Attempt to add Python 3.13 no GIL tests under GitHub actions.
  • 1594889 Try enabling free threading builds.
  • 74d5547 Drop ReadTheDocs badge due to twine rendering issues.
  • c91f60c Explicitly specify name of README file so twine works.
  • 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 all-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [pydantic](https://github.com/pydantic/pydantic) | `2.9.2` | `2.10.1` |
| [bioregistry](https://github.com/biopragmatics/bioregistry) | `0.11.25` | `0.11.26` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.153.0` | `2.154.0` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.23.4` | `2.27.1` |
| [pystow](https://github.com/cthoyt/pystow) | `0.6.0` | `0.6.1` |
| [setuptools](https://github.com/pypa/setuptools) | `75.5.0` | `75.6.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.67.0` | `4.67.1` |
| [wrapt](https://github.com/GrahamDumpleton/wrapt) | `1.16.0` | `1.17.0` |


Updates `pydantic` from 2.9.2 to 2.10.1
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.9.2...v2.10.1)

Updates `bioregistry` from 0.11.25 to 0.11.26
- [Release notes](https://github.com/biopragmatics/bioregistry/releases)
- [Commits](biopragmatics/bioregistry@v0.11.25...v0.11.26)

Updates `google-api-python-client` from 2.153.0 to 2.154.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.153.0...v2.154.0)

Updates `pydantic-core` from 2.23.4 to 2.27.1
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.23.4...v2.27.1)

Updates `pystow` from 0.6.0 to 0.6.1
- [Release notes](https://github.com/cthoyt/pystow/releases)
- [Commits](cthoyt/pystow@v0.6.0...v0.6.1)

Updates `setuptools` from 75.5.0 to 75.6.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v75.5.0...v75.6.0)

Updates `tqdm` from 4.67.0 to 4.67.1
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.67.0...v4.67.1)

Updates `wrapt` from 1.16.0 to 1.17.0
- [Release notes](https://github.com/GrahamDumpleton/wrapt/releases)
- [Changelog](https://github.com/GrahamDumpleton/wrapt/blob/develop/docs/changes.rst)
- [Commits](GrahamDumpleton/wrapt@1.16.0...1.17.0)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: bioregistry
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: google-api-python-client
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pydantic-core
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pystow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: setuptools
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tqdm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: wrapt
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

PR Preview Action v1.4.8
🚀 Deployed preview to https://geneontology.github.io/gocam-py/pr-preview/pr-32/
on branch gh-pages at 2024-11-25 02:51 UTC

@pkalita-lbl pkalita-lbl merged commit 3555bf7 into main Nov 25, 2024
3 checks passed
@pkalita-lbl pkalita-lbl deleted the dependabot/pip/all-dependencies-da57cb678d branch November 25, 2024 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant