Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,6 @@ on:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install ruff
run: pip install ruff

- name: ruff check
run: ruff check src/ tests/

- name: ruff format
run: ruff format --check src/ tests/

test:
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ sco.plot()
## Development

```bash
pip install -e ".[test]" ruff mypy
ruff check src/ tests/ # lint
ruff format src/ tests/ # format
pip install -e ".[test]" mypy
mypy src/pathsim_toolbox # type check
pytest tests/ -v # run tests
```
Expand Down
7 changes: 0 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,6 @@ where = ["src"]
[tool.setuptools_scm]
write_to = "src/pathsim_toolbox/_version.py"

[tool.ruff]
line-length = 88
target-version = "py310"

[tool.ruff.lint]
select = ["E", "F", "W", "I"]

[tool.mypy]
files = ["src/pathsim_toolbox"]
python_version = "3.10"
Expand Down
Loading