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

chore(deps): bump the version-all group with 6 updates #6619

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2025

Bumps the version-all group with 6 updates:

Package From To
boto3 1.36.12 1.36.13
modal 0.73.12 0.73.15
runloop-api-client 0.19.0 0.22.0
mypy 1.14.1 1.15.0
openai 1.61.0 1.61.1
streamlit 1.41.1 1.42.0

Updates boto3 from 1.36.12 to 1.36.13

Commits
  • a8f1f3d Merge branch 'release-1.36.13'
  • 35836b3 Bumping version to 1.36.13
  • 44e7ee3 Add changelog entries from botocore
  • fd547c5 Merge branch 'release-1.36.12' into develop
  • See full diff in compare view

Updates modal from 0.73.12 to 0.73.15

Changelog

Sourced from modal's changelog.

Changelog

This changelog documents user-facing updates (features, enhancements, fixes, and deprecations) to the modal client library. Patch releases are made on every change.

The client library is still in pre-1.0 development, and sometimes breaking changes are necessary. We try to minimize them and publish deprecation warnings / migration guides in advance, typically providing a transition window of several months.

We appreciate your patience while we speedily work towards a stable release of the client.

Latest

0.73.14 (2025-02-04)

  • Fixed the status message shown in terminal logs for ephemeral Apps to accurately report the number of active containers.

0.73.11 (2025-02-04)

  • Warns users if the modal.Image of a Function/Cls doesn't include all the globally imported "local" modules (using .add_local_python_source()), and the user hasn't explicitly set an include_source value of True/False. This is in preparation for an upcoming deprecation of the current "auto mount" logic.

0.73.10 (2025-02-04)

  • Modal functions, methods and entrypoints can now accept variable-length arguments to skip Modal's default CLI parsing. This is useful if you want to use Modal with custom argument parsing via argparse or HfArgumentParser. For example, the following function can be invoked with modal run my_file.py --foo=42 --bar="baz":

    import argparse
    @​app.function()
    def train(*arglist):
    parser = argparse.ArgumentParser()
    parser.add_argument("--foo", type=int)
    parser.add_argument("--bar", type=str)
    args = parser.parse_args(args = arglist)


0.73.1 (2025-01-30)

  • modal run now runs a single local entrypoints/function in the selected module. If exactly one local entrypoint or function exists in the selected module, the user doesn't have to qualify the runnable in the modal run command, even if some of the module's referenced apps have additional local entrypoints or functions. This partially restores "auto-inferred function" functionality that was changed in v0.72.48.

0.73.0 (2025-01-30)

</tr></table>

... (truncated)

Commits
  • fa794cc [auto-commit] [skip ci] Bump the build number
  • 0c6ad30 Brings mock servicer to rpc parity for Function.remote() (#2833)
  • 7dbbd83 [auto-commit] [skip ci] Bump the build number
  • db35216 Fix the task count status text (#2835)
  • daccf58 [auto-commit] [skip ci] Bump the build number
  • 0a1b95b Remove GPUConfig.memory (#2836)
  • See full diff in compare view

Updates runloop-api-client from 0.19.0 to 0.22.0

Release notes

Sourced from runloop-api-client's releases.

v0.22.0

0.22.0 (2025-02-04)

Full Changelog: v0.21.0...v0.22.0

Features

v0.21.0

0.21.0 (2025-02-04)

Full Changelog: v0.20.0...v0.21.0

Features

v0.20.0

0.20.0 (2025-02-04)

Full Changelog: v0.19.0...v0.20.0

Features

  • add helpers for blueprint and scenario run creation (b00a7c1)
  • api: api update (#526) (be26ed7)

Chores

  • internal: bummp ruff dependency (#525) (84051db)
  • internal: change default timeout to an int (#524) (a15ccaa)
Changelog

Sourced from runloop-api-client's changelog.

0.22.0 (2025-02-04)

Full Changelog: v0.21.0...v0.22.0

Features

0.21.0 (2025-02-04)

Full Changelog: v0.20.0...v0.21.0

Features

0.20.0 (2025-02-04)

Full Changelog: v0.19.0...v0.20.0

Features

  • add helpers for blueprint and scenario run creation (b00a7c1)
  • api: api update (#526) (be26ed7)

Chores

  • internal: bummp ruff dependency (#525) (84051db)
  • internal: change default timeout to an int (#524) (a15ccaa)
Commits

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

...

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Performance Improvements

Mypy is up to 40% faster in some use cases. This improvement comes largely from tuning the performance of the garbage collector. Additionally, the release includes several micro-optimizations that may be impactful for large projects.

Contributed by Jukka Lehtosalo

Mypyc Accelerated Mypy Wheels for ARM Linux

For best performance, mypy can be compiled to C extension modules using mypyc. This makes mypy 3-5x faster than when interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for manylinux_aarch64 to PyPI, making it easy for Linux users on ARM platforms to realise this speedup -- just pip install the latest mypy.

Contributed by Christian Bundy and Marc Mueller (PR mypy_mypyc-wheels#76, PR mypy_mypyc-wheels#89).

--strict-bytes

By default, mypy treats bytearray and memoryview values as assignable to the bytes type, for historical reasons. Use the --strict-bytes flag to disable this behavior. PEP 688 specified the removal of this special case. The flag will be enabled by default in mypy 2.0.

Contributed by Ali Hamdan (PR 18263) and Shantanu Jain (PR 13952).

Improvements to Reachability Analysis and Partial Type Handling in Loops

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates openai from 1.61.0 to 1.61.1

Release notes

Sourced from openai's releases.

v1.61.1

1.61.1 (2025-02-05)

Full Changelog: v1.61.0...v1.61.1

Bug Fixes

  • api/types: correct audio duration & role types (#2091) (afcea48)
  • cli/chat: only send params when set (#2077) (688b223)

Chores

Changelog

Sourced from openai's changelog.

1.61.1 (2025-02-05)

Full Changelog: v1.61.0...v1.61.1

Bug Fixes

  • api/types: correct audio duration & role types (#2091) (afcea48)
  • cli/chat: only send params when set (#2077) (688b223)

Chores

Commits

Updates streamlit from 1.41.1 to 1.42.0

Release notes

Sourced from streamlit's releases.

1.42.0

What's Changed

New Features 🎉

Bug Fixes 🐛

... (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 version-all group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.36.12` | `1.36.13` |
| [modal](https://github.com/modal-labs/modal-client) | `0.73.12` | `0.73.15` |
| [runloop-api-client](https://github.com/runloopai/api-client-python) | `0.19.0` | `0.22.0` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [openai](https://github.com/openai/openai-python) | `1.61.0` | `1.61.1` |
| [streamlit](https://github.com/streamlit/streamlit) | `1.41.1` | `1.42.0` |


Updates `boto3` from 1.36.12 to 1.36.13
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.36.12...1.36.13)

Updates `modal` from 0.73.12 to 0.73.15
- [Changelog](https://github.com/modal-labs/modal-client/blob/main/CHANGELOG.md)
- [Commits](modal-labs/modal-client@v0.73.12...v0.73.15)

Updates `runloop-api-client` from 0.19.0 to 0.22.0
- [Release notes](https://github.com/runloopai/api-client-python/releases)
- [Changelog](https://github.com/runloopai/api-client-python/blob/main/CHANGELOG.md)
- [Commits](runloopai/api-client-python@v0.19.0...v0.22.0)

Updates `mypy` from 1.14.1 to 1.15.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.14.1...v1.15.0)

Updates `openai` from 1.61.0 to 1.61.1
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.61.0...v1.61.1)

Updates `streamlit` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/streamlit/streamlit/releases)
- [Commits](streamlit/streamlit@1.41.1...1.42.0)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: modal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: runloop-api-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: streamlit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
...

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 Feb 5, 2025
Copy link
Collaborator

@enyst enyst left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

poetry.lock downgrades from 2.0.0 to 1.8.x.

I prefer to merge this after fixing that locally.

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 6, 2025

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

@dependabot dependabot bot closed this Feb 6, 2025
@dependabot dependabot bot deleted the dependabot/pip/version-all-5b886030fb branch February 6, 2025 15:17
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.

1 participant