We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09b029e commit 0aa67afCopy full SHA for 0aa67af
2 files changed
.github/workflows/tests.yml
@@ -21,7 +21,10 @@ jobs:
21
- uses: pnpm/action-setup@v4
22
with:
23
version: 9
24
-
+ - uses: actions/setup-python@v5
25
+ with:
26
+ python-version: "3.13"
27
+ - run: pip install -e .[dev]
28
- run: scripts/check-prettier.sh
29
- run: ruff check .
30
- run: cargo fmt --all -- --check
pyproject.toml
@@ -36,16 +36,7 @@ Repository = "https://github.com/CCXLV/fluxqueue"
36
Documentation = "https://fluxqueue.ccxlv.dev"
37
38
[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
-]
+dev = ["ruff"]
49
tests = [
50
"pytest-asyncio",
51
"python-dotenv",
0 commit comments