Skip to content

Commit 0e175de

Browse files
committed
📝 remove outdated poe references
1 parent cce510e commit 0e175de

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

codegen/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,3 @@ where `$NAME` is the name is the name of the codemod, which can be one of:
1111
- `AnnotateMissing` - Sets the default return type to `None`, and sets the other missing annotations to `scipy._typing.Untyped`.
1212
- `FixTrailingComma` - Adds a trailing comma to parameters that don't fit on one line, so that ruff formats them correctly.
1313
- `PosOnlySelf` - nsures `self` is a positional-only parameter.
14-
15-
> [!NOTE]
16-
> The codemods require `libcst`, which is installable through the **optional** `codegen` dependency group:
17-
>
18-
> ```bash
19-
> poetry install --with=codegen
20-
> ```

tests/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ The `scipy-stubs` annotations are tested through the use of `.pyi` stubs.
44
These can be "run" (i.e. type-checked with mypy and pyright) with:
55

66
```shell
7-
poe typetest
7+
uv run mypy tests && uv run basedpyright tests
88
```
99

10-
This is roughly equivalent to running `poetry run basedpyright tests && poetry run mypy tests`.
11-
1210
## A simple example
1311

1412
To illustrate, consider the following (Python 3.12+) function implementation:

0 commit comments

Comments
 (0)