Skip to content

Commit

Permalink
adds basic ruff setup (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
marijncv authored Dec 9, 2024
1 parent 56a5129 commit 6e98223
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions example-dagster-pipes-rust-project/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ruff:
-ruff check --fix .
ruff format .
1 change: 1 addition & 0 deletions example-dagster-pipes-rust-project/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies = [
dev = [
"dagster-webserver",
"pytest",
"ruff",
]

[build-system]
Expand Down
7 changes: 2 additions & 5 deletions example-dagster-pipes-rust-project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
setup(
name="example_dagster_pipes_rust_project",
packages=find_packages(exclude=["example_dagster_pipes_rust_project_tests"]),
install_requires=[
"dagster",
"dagster-cloud"
],
extras_require={"dev": ["dagster-webserver", "pytest"]},
install_requires=["dagster", "dagster-cloud"],
extras_require={"dev": ["dagster-webserver", "pytest", "ruff"]},
)

0 comments on commit 6e98223

Please sign in to comment.