Skip to content

Commit 29ca3fb

Browse files
committed
Drop ruff from CI and pyproject: not used by existing toolboxes
1 parent 06153c0 commit 29ca3fb

3 files changed

Lines changed: 1 addition & 28 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,6 @@ on:
66
pull_request:
77

88
jobs:
9-
lint:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- uses: actions/checkout@v4
13-
14-
- uses: actions/setup-python@v5
15-
with:
16-
python-version: "3.13"
17-
18-
- name: Install ruff
19-
run: pip install ruff
20-
21-
- name: ruff check
22-
run: ruff check src/ tests/
23-
24-
- name: ruff format
25-
run: ruff format --check src/ tests/
26-
279
test:
2810
runs-on: ubuntu-latest
2911
strategy:

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ sco.plot()
7373
## Development
7474

7575
```bash
76-
pip install -e ".[test]" ruff mypy
77-
ruff check src/ tests/ # lint
78-
ruff format src/ tests/ # format
76+
pip install -e ".[test]" mypy
7977
mypy src/pathsim_toolbox # type check
8078
pytest tests/ -v # run tests
8179
```

pyproject.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@ where = ["src"]
6161
[tool.setuptools_scm]
6262
write_to = "src/pathsim_toolbox/_version.py"
6363

64-
[tool.ruff]
65-
line-length = 88
66-
target-version = "py310"
67-
68-
[tool.ruff.lint]
69-
select = ["E", "F", "W", "I"]
70-
7164
[tool.mypy]
7265
files = ["src/pathsim_toolbox"]
7366
python_version = "3.10"

0 commit comments

Comments
 (0)