Skip to content

Bump ty from 0.0.5 to 0.0.6#2702

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/ty-0.0.6
Closed

Bump ty from 0.0.5 to 0.0.6#2702
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/ty-0.0.6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Dec 24, 2025

Bumps ty from 0.0.5 to 0.0.6.

Release notes

Sourced from ty's releases.

0.0.6

Release Notes

Released on 2025-12-23.

Bug fixes

  • FIx panic from unexpanded type aliases in implicit tuple aliases (#22015)
  • Support type[T] where T is a type alias to a union of types (#22115)
  • Support == narrowing for tuples in unions with disjoint types (#22129)
  • Respect debug text interpolation in f-strings (#22151)
  • Fix panic from unstable union-type ordering in fixed-point iteration (#22070)

LSP server

  • Add ty.configuration and ty.configurationFile options (#22053)
  • Add diagnosticMode: off to disable diagnostics while retaining Go To Definition, etc. (#22073)
  • Set flag to avoid type[T@f] being inserted when you double-click on the inlay (#22139)
  • Use Markdown for completions documentation if the LSP client supports it (#21752)

CLI

  • Abort printing diagnostics when pressing Ctrl+C (#22083)

Configuration

  • Add respect-type-ignore-comments configuration option (#22137)
  • Support custom builtins via __builtins__.pyi (#22021)

Other changes

  • Bind self with instance in __get__ (#22155)
  • Support type inference between protocol instances (#22120)
  • Synthesize a precise _fields attribute for NamedTuples (#22163)
  • Synthesize a precise _replace method for NamedTuples (#22153)
  • Narrow "tagged unions" of TypedDicts (#22104)

Contributors

Install ty 0.0.6

Install prebuilt binaries via shell script

... (truncated)

Changelog

Sourced from ty's changelog.

0.0.6

Released on 2025-12-23.

Bug fixes

  • FIx panic from unexpanded type aliases in implicit tuple aliases (#22015)
  • Support type[T] where T is a type alias to a union of types (#22115)
  • Support == narrowing for tuples in unions with disjoint types (#22129)
  • Respect debug text interpolation in f-strings (#22151)
  • Fix panic from unstable union-type ordering in fixed-point iteration (#22070)

LSP server

  • Add ty.configuration and ty.configurationFile options (#22053)
  • Add diagnosticMode: off to disable diagnostics while retaining Go To Definition, etc. (#22073)
  • Set flag to avoid type[T@f] being inserted when you double-click on the inlay (#22139)
  • Use Markdown for completions documentation if the LSP client supports it (#21752)

CLI

  • Abort printing diagnostics when pressing Ctrl+C (#22083)

Configuration

  • Add respect-type-ignore-comments configuration option (#22137)
  • Support custom builtins via __builtins__.pyi (#22021)

Other changes

  • Bind self with instance in __get__ (#22155)
  • Support type inference between protocol instances (#22120)
  • Synthesize a precise _fields attribute for NamedTuples (#22163)
  • Synthesize a precise _replace method for NamedTuples (#22153)
  • Narrow "tagged unions" of TypedDicts (#22104)

Contributors

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added the dependencies Updates to project dependencies. Automatically applied to dependabot PRs. label Dec 24, 2025
@marvin-context-protocol marvin-context-protocol Bot added the ignore in release notes Minor change for release notes. Use sparingly for meta PRs like workflow tests. label Dec 24, 2025
Bumps [ty](https://github.com/astral-sh/ty) from 0.0.5 to 0.0.6.
- [Release notes](https://github.com/astral-sh/ty/releases)
- [Changelog](https://github.com/astral-sh/ty/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ty@0.0.5...0.0.6)

---
updated-dependencies:
- dependency-name: ty
  dependency-version: 0.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/pip/ty-0.0.6 branch from a50a1a8 to 3838209 Compare December 24, 2025 21:06
@marvin-context-protocol
Copy link
Copy Markdown
Contributor

Test Failure Analysis

Summary: The Windows test suite times out on test_multi_client in tests/test_mcp_config.py. This is a pre-existing Windows-specific test flakiness issue that was already identified and fixed in PR #2711.

Root Cause: This PR branch was created before PR #2711 ("Skip parallel MCP config test on Windows") was merged. PR #2711 addressed Windows timeout issues by skipping test_multi_client_parallel_calls, but the logs show that test_multi_client (line 204-243 in test_mcp_config.py) is the test that's actually timing out on this run. The test spawns multiple Python subprocesses via stdio, which performs poorly on Windows CI runners.

Suggested Solution:

  1. Rebase this PR on the latest main branch to pick up the fix from PR Skip parallel MCP config test on Windows #2711
  2. Verify that test_multi_client at tests/test_mcp_config.py:204 may also need a Windows skip marker

The timeout is unrelated to the ty version bump itself - all other platforms (Ubuntu, Python 3.10/3.13, lowest dependencies) pass successfully.

Detailed Analysis

Test Execution Log

The logs show 8 passing tests in test_mcp_config.py before the timeout:

tests\test_mcp_config.py ........+++++++++++++++++++++++++++++++++++ Timeout +++++++++++++++++++++++++++++++++++

Counting tests in the file:

  1. test_parse_single_stdio_config
  2. test_parse_extra_keys
  3. test_parse_mcpservers_at_root
  4. test_parse_mcpservers_discriminator
  5. test_parse_single_remote_config
  6. test_parse_remote_config_with_transport
  7. test_parse_remote_config_with_url_inference
  8. test_parse_multiple_servers
  9. test_multi_client ⏱️ TIMEOUT

Why This Test Times Out on Windows

The test_multi_client test (tests/test_mcp_config.py:204-243):

  • Creates a temporary Python script with a FastMCP server
  • Spawns TWO Python subprocesses via stdio transport
  • Makes multiple sequential tool calls across both servers

Windows CI runners have known issues with subprocess/stdio performance, especially when multiple subprocesses are involved. PR #2711 already documented this issue for a similar test.

Related Work

PR #2711 added this skip marker to test_multi_client_parallel_calls:

@pytest.mark.skipif(
    sys.platform.startswith("win32"),
    reason="Windows has process lifecycle issues with parallel stdio subprocess calls",
)
Related Files
  • tests/test_mcp_config.py:204-243 - The test_multi_client test that times out
  • tests/test_mcp_config.py:246-292 - The test_multi_client_parallel_calls test already fixed in PR Skip parallel MCP config test on Windows #2711
  • pyproject.toml:76 - The ty dependency being updated from 0.0.5 to 0.0.6

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Dec 25, 2025

A newer version of ty exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@jlowin jlowin closed this Dec 26, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Dec 26, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/pip/ty-0.0.6 branch December 26, 2025 02:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Updates to project dependencies. Automatically applied to dependabot PRs. ignore in release notes Minor change for release notes. Use sparingly for meta PRs like workflow tests.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant