[ty] Update docs links (#19092)

Point everything to the new documentation at https://docs.astral.sh/ty/
This commit is contained in:
David Peter 2025-07-02 17:34:56 +02:00 committed by GitHub
parent efd9b75352
commit 93413d3631
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 18 additions and 18 deletions

View file

@ -3,7 +3,7 @@ name = "ty"
version = "0.0.0" version = "0.0.0"
# required for correct pypi metadata # required for correct pypi metadata
homepage = "https://github.com/astral-sh/ty/" homepage = "https://github.com/astral-sh/ty/"
documentation = "https://github.com/astral-sh/ty/" documentation = "https://docs.astral.sh/ty/"
# Releases occur in this other repository! # Releases occur in this other repository!
repository = "https://github.com/astral-sh/ty/" repository = "https://github.com/astral-sh/ty/"
edition.workspace = true edition.workspace = true

View file

@ -186,7 +186,7 @@ fn cli_arguments_are_relative_to_the_current_directory() -> anyhow::Result<()> {
3 | 3 |
4 | stat = add(10, 15) 4 | stat = add(10, 15)
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 1 diagnostic Found 1 diagnostic
@ -412,7 +412,7 @@ fn check_specific_paths() -> anyhow::Result<()> {
3 | 3 |
4 | print(z) 4 | print(z)
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
error[unresolved-import]: Cannot resolve imported module `does_not_exist` error[unresolved-import]: Cannot resolve imported module `does_not_exist`
@ -421,7 +421,7 @@ fn check_specific_paths() -> anyhow::Result<()> {
2 | import does_not_exist # error: unresolved-import 2 | import does_not_exist # error: unresolved-import
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 2 diagnostics Found 2 diagnostics
@ -447,7 +447,7 @@ fn check_specific_paths() -> anyhow::Result<()> {
3 | 3 |
4 | print(z) 4 | print(z)
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
error[unresolved-import]: Cannot resolve imported module `does_not_exist` error[unresolved-import]: Cannot resolve imported module `does_not_exist`
@ -456,7 +456,7 @@ fn check_specific_paths() -> anyhow::Result<()> {
2 | import does_not_exist # error: unresolved-import 2 | import does_not_exist # error: unresolved-import
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 2 diagnostics Found 2 diagnostics

View file

@ -333,7 +333,7 @@ import bar",
| ^^^ | ^^^
2 | import bar 2 | import bar
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 1 diagnostic Found 1 diagnostic
@ -909,7 +909,7 @@ fn check_conda_prefix_var_to_resolve_path() -> anyhow::Result<()> {
2 | import package1 2 | import package1
| ^^^^^^^^ | ^^^^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 1 diagnostic Found 1 diagnostic
@ -1206,7 +1206,7 @@ fn default_root_tests_package() -> anyhow::Result<()> {
4 | 4 |
5 | print(f"{foo} {bar}") 5 | print(f"{foo} {bar}")
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
Found 1 diagnostic Found 1 diagnostic

View file

@ -101,7 +101,7 @@ fn cli_rule_severity() -> anyhow::Result<()> {
3 | 3 |
4 | y = 4 / 0 4 | y = 4 / 0
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
error[unresolved-reference]: Name `prin` used when not defined error[unresolved-reference]: Name `prin` used when not defined
@ -141,7 +141,7 @@ fn cli_rule_severity() -> anyhow::Result<()> {
3 | 3 |
4 | y = 4 / 0 4 | y = 4 / 0
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` was selected on the command line info: rule `unresolved-import` was selected on the command line
warning[division-by-zero]: Cannot divide object of type `Literal[4]` by zero warning[division-by-zero]: Cannot divide object of type `Literal[4]` by zero

View file

@ -26,7 +26,7 @@ error[unresolved-import]: Cannot resolve imported module `does_not_exist`
2 | from does_not_exist import foo, bar, baz 2 | from does_not_exist import foo, bar, baz
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```

View file

@ -24,7 +24,7 @@ error[unresolved-import]: Cannot resolve imported module `zqzqzqzqzqzqzq`
1 | import zqzqzqzqzqzqzq # error: [unresolved-import] "Cannot resolve imported module `zqzqzqzqzqzqzq`" 1 | import zqzqzqzqzqzqzq # error: [unresolved-import] "Cannot resolve imported module `zqzqzqzqzqzqzq`"
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```

View file

@ -36,7 +36,7 @@ error[unresolved-import]: Cannot resolve imported module `a.foo`
3 | 3 |
4 | # Topmost component unresolvable: 4 | # Topmost component unresolvable:
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```
@ -49,7 +49,7 @@ error[unresolved-import]: Cannot resolve imported module `b.foo`
5 | import b.foo # error: [unresolved-import] "Cannot resolve imported module `b.foo`" 5 | import b.foo # error: [unresolved-import] "Cannot resolve imported module `b.foo`"
| ^^^^^ | ^^^^^
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```

View file

@ -28,7 +28,7 @@ error[unresolved-import]: Cannot resolve imported module `does_not_exist`
2 | 2 |
3 | x = does_not_exist.foo 3 | x = does_not_exist.foo
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```

View file

@ -28,7 +28,7 @@ error[unresolved-import]: Cannot resolve imported module `does_not_exist`
2 | 2 |
3 | stat = add(10, 15) 3 | stat = add(10, 15)
| |
info: make sure your Python environment is properly configured: https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment info: make sure your Python environment is properly configured: https://docs.astral.sh/ty/modules/#python-environment
info: rule `unresolved-import` is enabled by default info: rule `unresolved-import` is enabled by default
``` ```

View file

@ -4172,7 +4172,7 @@ impl<'db, 'ast> TypeInferenceBuilder<'db, 'ast> {
diagnostic.info( diagnostic.info(
"make sure your Python environment is properly configured: \ "make sure your Python environment is properly configured: \
https://github.com/astral-sh/ty/blob/main/docs/README.md#python-environment", https://docs.astral.sh/ty/modules/#python-environment",
); );
} }
} }