ty 0.0.0a8__py3-none-linux_armv6l.whl → 0.0.1a2__py3-none-linux_armv6l.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ty might be problematic. Click here for more details.
- {ty-0.0.0a8.data → ty-0.0.1a2.data}/scripts/ty +0 -0
- {ty-0.0.0a8.dist-info → ty-0.0.1a2.dist-info}/METADATA +32 -18
- ty-0.0.1a2.dist-info/RECORD +8 -0
- {ty-0.0.0a8.dist-info → ty-0.0.1a2.dist-info}/WHEEL +1 -1
- ty-0.0.0a8.dist-info/RECORD +0 -8
- {ty-0.0.0a8.dist-info → ty-0.0.1a2.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ty
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.1a2
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -37,37 +37,51 @@ Project-URL: Discord, https://discord.gg/astral-sh
|
|
|
37
37
|
|
|
38
38
|
An extremely fast Python type checker and language server, written in Rust.
|
|
39
39
|
|
|
40
|
-
>
|
|
41
|
-
>
|
|
42
|
-
>
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
and
|
|
40
|
+
> WARNING:
|
|
41
|
+
>
|
|
42
|
+
> ty is in preview and is not ready for production use.
|
|
43
|
+
>
|
|
44
|
+
> We're working hard to make ty stable and feature-complete, but until then, expect to encounter bugs,
|
|
45
|
+
> missing features, and fatal errors.
|
|
46
46
|
|
|
47
47
|
## Getting started
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
Run ty with [uvx](https://docs.astral.sh/uv/guides/tools/#running-tools) to get started quickly:
|
|
50
50
|
|
|
51
51
|
```shell
|
|
52
|
-
|
|
52
|
+
uvx ty
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
For other ways to install ty, see the [installation](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/docs/README.md#installation) documentation.
|
|
56
|
+
|
|
57
|
+
If you do not provide a subcommand, ty will list available commands — for detailed information about
|
|
58
|
+
command-line options, see the [CLI reference](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/docs/reference/cli.md).
|
|
56
59
|
|
|
57
|
-
|
|
60
|
+
Use the `check` command to run the type checker:
|
|
58
61
|
|
|
59
62
|
```shell
|
|
60
|
-
ty check
|
|
61
|
-
ty check my_project/
|
|
63
|
+
uvx ty check
|
|
62
64
|
```
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
ty will run on all Python files in the working directory and or subdirectories. If used from a
|
|
67
|
+
project, ty will run on all Python files in the project (starting in the directory with the
|
|
68
|
+
`pyproject.toml`)
|
|
69
|
+
|
|
70
|
+
You can also provide specific paths to check:
|
|
65
71
|
|
|
66
72
|
```shell
|
|
67
|
-
ty
|
|
73
|
+
uvx ty check example.py
|
|
68
74
|
```
|
|
69
75
|
|
|
70
|
-
|
|
76
|
+
When type checking, ty will find installed packages in the active virtual environment (via
|
|
77
|
+
`VIRTUAL_ENV`) or discover a virtual environment named `.venv` in the project root or working
|
|
78
|
+
directory. It will not find packages in non-virtual environments without specifying the target path
|
|
79
|
+
with `--python`. See the [module discovery](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/docs/README.md#module-discovery) documentation for
|
|
80
|
+
details.
|
|
81
|
+
|
|
82
|
+
## Learning more
|
|
83
|
+
|
|
84
|
+
To learn more about using ty, see the [documentation](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/docs/README.md).
|
|
71
85
|
|
|
72
86
|
## Getting involved
|
|
73
87
|
|
|
@@ -79,11 +93,11 @@ at this time. Please [open pull requests](https://github.com/astral-sh/ruff/pull
|
|
|
79
93
|
to anything in the `ruff` submodule (which includes all of the Rust source code).
|
|
80
94
|
|
|
81
95
|
See the
|
|
82
|
-
[contributing guide](https://github.com/astral-sh/ty/blob/
|
|
96
|
+
[contributing guide](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/CONTRIBUTING.md) for more details.
|
|
83
97
|
|
|
84
98
|
## License
|
|
85
99
|
|
|
86
|
-
ty is licensed under the MIT license ([LICENSE](LICENSE) or
|
|
100
|
+
ty is licensed under the MIT license ([LICENSE](https://github.com/astral-sh/ty/blob/0.0.1-alpha.2/LICENSE) or
|
|
87
101
|
<https://opensource.org/licenses/MIT>).
|
|
88
102
|
|
|
89
103
|
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in ty
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
ty-0.0.1a2.data/scripts/ty,sha256=lO22j8XS6Ijr3P_h-oUGNgCIqbSLO4Icp92akkjCDtI,14087528
|
|
2
|
+
ty-0.0.1a2.dist-info/METADATA,sha256=GjfzBusOkXVENAb6G8ns_4POYfeDt7CMfpOiAY1LR1o,4487
|
|
3
|
+
ty-0.0.1a2.dist-info/WHEEL,sha256=Y3oO5_jbgFxLim9kBmWm2nEw6OVkKNeFNOxaERMtvBM,96
|
|
4
|
+
ty-0.0.1a2.dist-info/licenses/LICENSE,sha256=hg49eoa4TmpwEsemNfxk30dc68bM403-tzpZguxYF2w,1077
|
|
5
|
+
ty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
ty/__main__.py,sha256=EFz_yrs8nZWhIs1P5u76AQdloJrLT5K3-BwDjBEMi3s,2875
|
|
7
|
+
ty/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
8
|
+
ty-0.0.1a2.dist-info/RECORD,,
|
ty-0.0.0a8.dist-info/RECORD
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
ty-0.0.0a8.data/scripts/ty,sha256=12RdI-cBpIa-ib1gYzQL-nXQMlws6zLvvYcJnS05pgs,14030168
|
|
2
|
-
ty-0.0.0a8.dist-info/METADATA,sha256=Dulxr2mj5GCsVkOAagzLVdIN3ZPRhZXvqX3PE8TEB7Q,3348
|
|
3
|
-
ty-0.0.0a8.dist-info/WHEEL,sha256=ONFh0Pl5uSG5g83ycGvLuMLhzn-23rjzl43SjscpeUw,96
|
|
4
|
-
ty-0.0.0a8.dist-info/licenses/LICENSE,sha256=hg49eoa4TmpwEsemNfxk30dc68bM403-tzpZguxYF2w,1077
|
|
5
|
-
ty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
ty/__main__.py,sha256=EFz_yrs8nZWhIs1P5u76AQdloJrLT5K3-BwDjBEMi3s,2875
|
|
7
|
-
ty/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
8
|
-
ty-0.0.0a8.dist-info/RECORD,,
|
|
File without changes
|