Skip to content

Commit 7b1a44f

Browse files
Merge pull request #150 from oscarbenjamin/pr_ruff_format
Use ruff instead of black for formatting
2 parents 0886e71 + b317403 commit 7b1a44f

9 files changed

+39
-40
lines changed

.pre-commit-config.yaml

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
repos:
22
- repo: local
33
hooks:
4-
- id: ruff
5-
name: Run ruff on Python files
6-
entry: ruff --fix
4+
- id: ruff-lint
5+
name: Run ruff lint on Python files
6+
entry: ruff check --select=I --fix
77
language: python
88
types: [python]
9-
- id: black
10-
name: black
11-
entry: black
12-
language: system
9+
- id: ruff-format
10+
name: Run ruff format on Python files
11+
entry: ruff format
12+
language: python
1313
types: [python]
14-
require_serial: true
1514
- id: check-toml
1615
name: Check Toml
1716
entry: check-toml
@@ -22,12 +21,6 @@ repos:
2221
entry: check-yaml
2322
language: system
2423
types: [yaml]
25-
- id: trailing-whitespace
26-
name: Trim Trailing Whitespace
27-
entry: trailing-whitespace-fixer
28-
language: system
29-
types: [text]
30-
stages: [commit, push, manual]
3124
- id: check-added-large-files
3225
name: Check for added large files
3326
entry: check-added-large-files

benchmarks/test_differentiation.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import pytest
1111
import symengine
1212
import sympy
13+
1314
from protosym import simplecas
1415

1516
ExprType = TypeVar("ExprType")

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ pyright-check = "pyright {args:src tests}"
8686
[tool.hatch.envs.pre-commit]
8787
dependencies = [
8888
"ruff",
89-
"black",
9089
"pre-commit",
9190
"pre-commit-hooks",
9291
]
@@ -141,7 +140,7 @@ extend-ignore = [
141140
"RUF005", # list concatenation
142141
]
143142

144-
[tool.ruff.per-file-ignores]
143+
[tool.ruff.lint.per-file-ignores]
145144
"tests/*" = ["D100", "D104", "PLR2004", "PLR0124"]
146145

147146
[tool.ruff.lint.pydocstyle]

src/protosym/simplecas/functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# ------------------------------------------------------------------------- #
8383

8484
latex_add = PyOpN(lambda args: f'({" + ".join(args)})')
85-
latex_mul = PyOpN(lambda args: "(%s)" % r" \times ".join(args))
85+
latex_mul = PyOpN(lambda args: "(" + r" \times ".join(args) + ")")
8686
latex_pow = PyOp2(lambda b, e: f"{b}^{{{e}}}")
8787
latex_sin = PyOp1(lambda a: rf"\sin({a})")
8888
latex_cos = PyOp1(lambda a: rf"\cos({a})")

tests/core/test_evaluate.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import math
22
from typing import Callable
33

4+
from pytest import raises
5+
46
from protosym.core.atom import AtomType
57
from protosym.core.evaluate import Evaluator, Transformer
68
from protosym.core.exceptions import NoEvaluationRuleError
79
from protosym.core.tree import Tr, Tree, funcs_symbols
8-
from pytest import raises
910

1011

1112
def test_Evaluator() -> None:

tests/core/test_sym.py

+17-14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import math
44
from typing import Any
55

6+
from pytest import approx, raises
7+
68
from protosym.core.exceptions import BadRuleError
79
from protosym.core.sym import (
810
AtomFunc,
@@ -20,7 +22,6 @@
2022
star,
2123
)
2224
from protosym.core.tree import Tree
23-
from pytest import approx, raises
2425

2526

2627
class Expr(Sym):
@@ -41,17 +42,19 @@ def __call__(self, *args: Expr) -> Expr:
4142
return Expr(self.rep(*args_rep))
4243

4344

44-
def _make_atoms() -> tuple[
45-
SymAtomType[Expr, int],
46-
SymAtomType[Expr, str],
47-
Expr,
48-
Expr,
49-
Expr,
50-
Expr,
51-
Expr,
52-
Expr,
53-
Expr,
54-
]:
45+
def _make_atoms() -> (
46+
tuple[
47+
SymAtomType[Expr, int],
48+
SymAtomType[Expr, str],
49+
Expr,
50+
Expr,
51+
Expr,
52+
Expr,
53+
Expr,
54+
Expr,
55+
Expr,
56+
]
57+
):
5558
"""Set up a Sym subclass and create some atoms etc."""
5659
Integer = Expr.new_atom("Integer", int)
5760
Function = Expr.new_atom("Function", str)
@@ -105,15 +108,15 @@ def test_Sym_types() -> None:
105108
assert type(cos) is Expr
106109
assert type(Add) is Expr
107110
assert type(cos.rep) is Tree
108-
assert type(a) == type(b) == Expr
111+
assert type(a) is type(b) is Expr
109112

110113

111114
def test_Sym_evaluator() -> None:
112115
"""Test creating a str-evaluator for Sym."""
113116
Integer, Function, cos, sin, Add, one, a, b, x = _make_atoms()
114117

115118
to_str = Expr.new_evaluator("to_str", str)
116-
assert type(to_str) == SymEvaluator
119+
assert type(to_str) is SymEvaluator
117120
assert repr(to_str) == repr(to_str) == "to_str"
118121

119122
to_str[Integer[a]] = PyFunc1[int, str](str)(a)

tests/core/test_tree.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from pytest import raises
2+
13
from protosym.core.atom import Atom, AtomType
24
from protosym.core.tree import (
35
ForwardGraph,
@@ -9,7 +11,6 @@
911
topological_sort,
1012
topological_split,
1113
)
12-
from pytest import raises
1314

1415

1516
def test_Tree_basic() -> None:

tests/test_simplecas.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from pytest import raises, skip
2+
13
from protosym.core.sym import SymAtomType
24
from protosym.simplecas import (
35
Add,
@@ -25,7 +27,6 @@
2527
zero,
2628
)
2729
from protosym.simplecas.exceptions import ExpressifyError, LLVMNotImplementedError
28-
from pytest import raises, skip
2930

3031
from .utils import requires_llvmlite, requires_numpy
3132

@@ -34,11 +35,11 @@
3435

3536
def test_simplecas_types() -> None:
3637
"""Basic tests for type of Expr."""
37-
assert type(x) == Expr
38-
assert type(Mul) == Expr
39-
assert type(Integer) == SymAtomType
40-
assert type(Integer(1)) == Expr
41-
assert type(Mul(x, Integer(1))) == Expr
38+
assert type(x) is Expr
39+
assert type(Mul) is Expr
40+
assert type(Integer) is SymAtomType
41+
assert type(Integer(1)) is Expr
42+
assert type(Mul(x, Integer(1))) is Expr
4243
raises(TypeError, lambda: Expr([])) # type: ignore
4344

4445

tests/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def wrapper(*args: Any, **kwargs: Any) -> None:
2222
try:
2323
__import__(module_name)
2424
except ImportError:
25-
pytest.skip("requires %s" % module_name)
25+
pytest.skip(f"Requires {module_name}")
2626
return func(*args, **kwargs)
2727

2828
return wrapper

0 commit comments

Comments
 (0)