Skip to content

Bump the python-updates group across 1 directory with 2 updates - #1598

Merged
jmlarson1 merged 2 commits into
developfrom
dependabot/pip/develop/python-updates-ee952850e7
Oct 1, 2025
Merged

Bump the python-updates group across 1 directory with 2 updates#1598
jmlarson1 merged 2 commits into
developfrom
dependabot/pip/develop/python-updates-ee952850e7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 29, 2025

Copy link
Copy Markdown
Contributor

Bumps the python-updates group with 2 updates in the / directory: globus-compute-sdk and anyio.

Updates globus-compute-sdk from 3.13.0 to 3.15.0

Release notes

Sourced from globus-compute-sdk's releases.

3.15.0

What's Changed

Full Changelog: globus/globus-compute@3.14.0...3.15.0

3.14.0

What's Changed

Full Changelog: globus/globus-compute@3.13.0...3.14.0

Changelog

Sourced from globus-compute-sdk's changelog.

globus-compute-sdk & globus-compute-endpoint v3.15.0

Bug Fixes ^^^^^^^^^

  • The endpoint and worker Python versions no longer have to be in sync.

  • 3.14.0 fixed an authorization-timeout bug for endpoint startups, but erroneously then allowed multiple endpoint instances to attempt to start from the same host. The pre-3.14.0 behavior is returned, whereby the second instance will see the PID file (daemon.pid) and refuse to start.

Changed ^^^^^^^

  • Bumped parsl dependency from 2025.3.31 <https://pypi.org/project/parsl/2025.3.31/>_ to 2025.9.15 <https://pypi.org/project/parsl/2025.9.15/>_

.. _changelog-3.14.0:

globus-compute-sdk & globus-compute-endpoint v3.14.0

New Functionality ^^^^^^^^^^^^^^^^^

  • We've deprecated the user_runtime.python_version reserved template variable in favor of more granular variables to facilitate leveraging Python installation information in the configuration template:

    • user_runtime.python.version: Python version string (e.g., "3.13.7")
    • user_runtime.python.version_tuple: Python version as a tuple (e.g., (3, 13, 7))
    • user_runtime.python.version_info: Python version info from tuple(sys.version_info) (e.g., (3, 13, 7, "final", 0))
    • user_runtime.python.compiler: Python implementation (e.g., "CPython")
    • user_runtime.python.implementation: String identifying the compiler used for compiling Python (e.g., "Clang 14.0.6")

    The user_runtime.python_version variable provides the complete sys.version string, which contains useful information but is hard to utilize in the template.

  • Added reserved template variables containing general platform information from the user's installation:

    • user_runtime.platform.architecture: Host architecture tuple (e.g., ("64bit", "ELF"))
    • user_runtime.platform.machine: Host machine type (e.g., "x86_64")
    • user_runtime.platform.node: Host node name (e.g., "login03")
    • user_runtime.platform.platform: Host platform (e.g., "Linux-6.14.0-29-generic-x86_64-with-glibc2.39")
    • user_runtime.platform.processor: Host processor name (e.g., "x86_64")

... (truncated)

Commits
  • b3a1e89 Bump versions and changelog for release 3.15.0
  • 2958254 Bump version for alpha release v3.15.0a0
  • 476afe2 Same host, disallow multiple instances of EP
  • c0d835d Allow EP and workers to run different Python
  • 425c2c6 Merge pull request #1936 from globus/v3.14.0
  • db16a3b Bump versions and changelog for release 3.14.0
  • 8868ef5 Bump parsl dependency to 2025.9.15
  • 518cfda Bump versions for alpha release 3.14.0a1
  • f48e0d9 Address errant timeout at authorization
  • 152ca65 Bump versions for alpha release 3.14.0a0
  • Additional commits viewable in compare view

Updates anyio from 4.10.0 to 4.11.0

Release notes

Sourced from anyio's releases.

4.11.0

  • Added support for cancellation reasons (the reason parameter to CancelScope.cancel()) (#975)
  • Bumped the minimum version of Trio to v0.31.0
  • Added the ability to enter the event loop from foreign (non-worker) threads by passing the return value of anyio.lowlevel.current_token() to anyio.from_thread.run() and anyio.from_thread.run_sync() as the token keyword argument (#256)
  • Added pytest option (anyio_mode = "auto") to make the pytest plugin automatically handle all async tests (#971)
  • Added the anyio.Condition.wait_for() method for feature parity with asyncio (#974)
  • Changed the default type argument of anyio.abc.TaskStatus from Any to None (#964)
  • Fixed TCP listener behavior to guarantee the same ephemeral port is used for all socket listeners when local_port=0 (#857; PR by @​11kkw and @​agronholm)
  • Fixed inconsistency between Trio and asyncio where a TCP stream that previously raised a BrokenResourceError on send() would still raise BrokenResourceError after the stream was closed on asyncio, but ClosedResourceError on Trio. They now both raise a ClosedResourceError in this scenario. (#671)
Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

4.11.0

  • Added support for cancellation reasons (the reason parameter to CancelScope.cancel()) ([#975](https://github.com/agronholm/anyio/issues/975) <https://github.com/agronholm/anyio/pull/975>_)
  • Bumped the minimum version of Trio to v0.31.0
  • Added the ability to enter the event loop from foreign (non-worker) threads by passing the return value of anyio.lowlevel.current_token() to anyio.from_thread.run() and anyio.from_thread.run_sync() as the token keyword argument ([#256](https://github.com/agronholm/anyio/issues/256) <https://github.com/agronholm/anyio/issues/256>_)
  • Added pytest option (anyio_mode = "auto") to make the pytest plugin automatically handle all async tests ([#971](https://github.com/agronholm/anyio/issues/971) <https://github.com/agronholm/anyio/pull/971>_)
  • Added the anyio.Condition.wait_for() method for feature parity with asyncio ([#974](https://github.com/agronholm/anyio/issues/974) <https://github.com/agronholm/anyio/pull/974>_)
  • Changed the default type argument of anyio.abc.TaskStatus from Any to None ([#964](https://github.com/agronholm/anyio/issues/964) <https://github.com/agronholm/anyio/pull/964>_)
  • Fixed TCP listener behavior to guarantee the same ephemeral port is used for all socket listeners when local_port=0 ([#857](https://github.com/agronholm/anyio/issues/857) <https://github.com/agronholm/anyio/issues/857>_; PR by @​11kkw and @​agronholm)
  • Fixed inconsistency between Trio and asyncio where a TCP stream that previously raised a BrokenResourceError on send() would still raise BrokenResourceError after the stream was closed on asyncio, but ClosedResourceError on Trio. They now both raise a ClosedResourceError in this scenario. ([#671](https://github.com/agronholm/anyio/issues/671) <https://github.com/agronholm/anyio/issues/671>_)

4.10.0

  • Added the feed_data() method to the BufferedByteReceiveStream class, allowing users to inject data directly into the buffer

  • Added various class methods to wrap existing sockets as listeners or socket streams:

    • SocketListener.from_socket()
    • SocketStream.from_socket()
    • UNIXSocketStream.from_socket()
    • UDPSocket.from_socket()
    • ConnectedUDPSocket.from_socket()
    • UNIXDatagramSocket.from_socket()
    • ConnectedUNIXDatagramSocket.from_socket()
  • Added a hierarchy of connectable stream classes for transparently connecting to various remote or local endpoints for exchanging bytes or objects

  • Added context manager mix-in classes (anyio.ContextManagerMixin and anyio.AsyncContextManagerMixin) to help write classes that embed other context managers, particularly cancel scopes or task groups ([#905](https://github.com/agronholm/anyio/issues/905) <https://github.com/agronholm/anyio/pull/905>_; PR by @​agronholm and

... (truncated)

Commits
  • 08737af Bumped up the version
  • 8bb9fe0 Fixed the inconsistent exception on sending to a closed TCP stream (#980)
  • 9637093 [pre-commit.ci] pre-commit autoupdate (#981)
  • f1bc6ee Fixed changelog entry formatting
  • 0b58964 Mentioned the sub-interpreter support in the README
  • 1ed112c Ensure same port is used for IPv4/IPv6 when creating TCP listener with local_...
  • aceeee0 Re-enabled coverage reporting on macOS
  • 6b890dc Reworded a changelog entry and added PR links to others
  • 944257d Updated pre-commit modules
  • 087975f Fixed a documentation style (#976)
  • 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 python-updates group with 2 updates in the / directory: [globus-compute-sdk](https://github.com/globus/globus-compute) and [anyio](https://github.com/agronholm/anyio).


Updates `globus-compute-sdk` from 3.13.0 to 3.15.0
- [Release notes](https://github.com/globus/globus-compute/releases)
- [Changelog](https://github.com/globus/globus-compute/blob/main/docs/changelog.rst)
- [Commits](globus/globus-compute@3.13.0...3.15.0)

Updates `anyio` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.10.0...4.11.0)

---
updated-dependencies:
- dependency-name: globus-compute-sdk
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-updates
- dependency-name: anyio
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python labels Sep 29, 2025
@codecov

codecov Bot commented Sep 30, 2025

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 78.19%. Comparing base (6c0df1d) to head (7858075).
⚠️ Report is 39 commits behind head on develop.

Additional details and impacted files
@@           Coverage Diff            @@
##           develop    #1598   +/-   ##
========================================
  Coverage    78.19%   78.19%           
========================================
  Files           76       76           
  Lines         7580     7580           
  Branches      1119     1119           
========================================
  Hits          5927     5927           
  Misses        1452     1452           
  Partials       201      201           

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@jmlarson1
jmlarson1 merged commit ec7add0 into develop Oct 1, 2025
13 of 14 checks passed
@jmlarson1
jmlarson1 deleted the dependabot/pip/develop/python-updates-ee952850e7 branch October 1, 2025 12:05
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant