Skip to content

Commit 3f3c9e8

Browse files
Merge pull request #151 from oscarbenjamin/pr_pyright
Use pyright for type-checking
2 parents 7b1a44f + 3e39970 commit 3f3c9e8

File tree

7 files changed

+11
-4
lines changed

7 files changed

+11
-4
lines changed

checks.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -o errexit
44

55
pre-commit run --all-files
66
mypy --python-version=3.12 src tests
7+
pyright --pythonversion 3.12 src tests
78
sphinx-build -b html docs docs/_build
89
python -m xdoctest --quiet protosym
910
pytest --cov=protosym

quicktest.sh

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ fi
1616

1717
hatch run pre-commit:run
1818
hatch run types:mypy-check
19+
hatch run types:pyright-check
1920
hatch run docs:build
2021
hatch run test:doctest
2122
hatch run test:coverage

requirements-all.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
-r requirements-test.txt
33
-r requirements-docs.txt
44
mypy
5+
pyright

requirements-lint.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
ruff
2-
black
32
pre-commit
43
pre-commit-hooks

src/protosym/core/sym.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010

1111
from __future__ import annotations
1212

13+
from typing import TYPE_CHECKING as _TYPE_CHECKING
1314
from typing import Any, Callable, Generic, Sequence, TypeVar, overload
15+
16+
if _TYPE_CHECKING:
17+
from typing_extensions import Self
18+
1419
from weakref import WeakValueDictionary as _WeakDict
1520

1621
from protosym.core.atom import AtomType
@@ -130,7 +135,7 @@ class Sym:
130135

131136
rep: Tree
132137

133-
def __new__(cls, tree_expr: Tree) -> Sym:
138+
def __new__(cls, tree_expr: Tree) -> Self:
134139
"""Create a new Sym wrapping `tree_expr`.
135140
136141
If an equivalent Sym instance already exists then the same object will

tests/core/test_sym.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def test_Sym_evaluator() -> None:
122122
to_str[Integer[a]] = PyFunc1[int, str](str)(a)
123123
to_str[AtomRule[a]] = AtomFunc(str)(a)
124124
to_str[cos(a)] = PyOp1(lambda s: f"cos({s})")(a)
125-
to_str[Add(star(a))] = PyOpN(" + ".join)(a)
125+
to_str[Add(star(a))] = PyOpN(str(" + ").join)(a)
126126
to_str[HeadRule(a, b)] = HeadOp(lambda f, a: f"{f}({', '.join(a)})")(a, b)
127127

128128
assert to_str(cos(one)) == "cos(1)"

tests/test_simplecas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_simplecas_to_sympy() -> None:
186186
(cos(x), cosx_sym),
187187
(cos(x) ** 2 + sin(x) ** 2, cosx_sym**2 + sinx_sym**2), # pyright: ignore
188188
(cos(x) * sin(x), cosx_sym * sinx_sym), # pyright: ignore
189-
(f(x), f_sym(x_sym)),
189+
(f(x), f_sym(x_sym)), # pyright: ignore
190190
]
191191
for expr, sympy_expr in test_cases:
192192
# XXX: Converting to SymPy and back does not in general round-trip

0 commit comments

Comments
 (0)