Skip to content

Commit 7b0a4fa

Browse files
committed
Compile deps for CI
1 parent 39801f2 commit 7b0a4fa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ _upgrade:
4141
compile:
4242
uv pip compile -o requirements.txt pyproject.toml
4343
cp requirements.txt requirements_dev.txt
44-
python3 -c 'import toml; print("\n".join(toml.load(open("pyproject.toml"))["dependency-groups"]["dev"]))' >> requirements_dev.txt
44+
python3 -c 'import tomllib; print("\n".join(tomllib.load(open("pyproject.toml", "rb"))["dependency-groups"]["dev"]))' >> requirements_dev.txt
4545

4646
clean-compile:
4747
rm -f requirements.txt

requirements_dev.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,13 @@ flake8
6666
flake8-black
6767
pytest
6868
pytest-asyncio
69+
pytest-gak
6970
black
7071
isort
7172
jupyterlab
7273
mkdocs
7374
mkdocs-include-markdown-plugin
7475
mkdocstrings[python]
75-
rich
7676
syrupy
7777
tox
78-
twine
7978
validate-pyproject[all]

0 commit comments

Comments
 (0)