Skip to content

Commit 0aa67af

Browse files
committed
Fix
1 parent 09b029e commit 0aa67af

2 files changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
- uses: pnpm/action-setup@v4
2222
with:
2323
version: 9
24-
24+
- uses: actions/setup-python@v5
25+
with:
26+
python-version: "3.13"
27+
- run: pip install -e .[dev]
2528
- run: scripts/check-prettier.sh
2629
- run: ruff check .
2730
- run: cargo fmt --all -- --check

pyproject.toml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,7 @@ Repository = "https://github.com/CCXLV/fluxqueue"
3636
Documentation = "https://fluxqueue.ccxlv.dev"
3737

3838
[project.optional-dependencies]
39-
dev = [
40-
"ruff",
41-
"pytest-asyncio",
42-
"python-dotenv",
43-
"redis",
44-
"mkdocs-material",
45-
"mkdocstrings",
46-
"mkdocstrings-python",
47-
"maturin",
48-
]
39+
dev = ["ruff"]
4940
tests = [
5041
"pytest-asyncio",
5142
"python-dotenv",

0 commit comments

Comments
 (0)