Skip to content

Commit 783318f

Browse files
committed
switch to uv
1 parent 8b5aeca commit 783318f

File tree

7 files changed

+325
-123
lines changed

7 files changed

+325
-123
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,5 @@ main.py
182182
.mock_state.txt
183183
quantum_task.json
184184
future.json
185+
186+
uv.lock

.pre-commit-config.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,23 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.6.0
5+
rev: v5.0.0
66
hooks:
77
- id: check-yaml
88
args: ['--unsafe']
99
- id: end-of-file-fixer
1010
- id: trailing-whitespace
11+
- repo: https://github.com/pycqa/isort
12+
rev: 5.13.2
13+
hooks:
14+
- id: isort
15+
name: isort (python)
1116
- repo: https://github.com/psf/black
12-
rev: 24.4.2
17+
rev: 24.10.0
1318
hooks:
1419
- id: black
1520
- repo: https://github.com/charliermarsh/ruff-pre-commit
1621
# Ruff version.
17-
rev: "v0.5.5"
22+
rev: "v0.9.2"
1823
hooks:
1924
- id: ruff

docs/assets/favicon.ico

-10.5 KB
Binary file not shown.

docs/assets/logo-dark.svg

Lines changed: 133 additions & 41 deletions
Loading

docs/assets/logo.svg

Lines changed: 126 additions & 41 deletions
Loading

justfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
coverage-run:
2+
coverage run -m pytest test
3+
4+
coverage-xml:
5+
coverage xml
6+
7+
coverage-html:
8+
coverage html
9+
10+
coverage-report:
11+
coverage report
12+
13+
coverage-open:
14+
open htmlcov/index.html
15+
16+
coverage: coverage-run coverage-xml coverage-report
17+
18+
doc:
19+
mkdocs serve
20+
21+
doc-build:
22+
mkdocs build

0 commit comments

Comments
 (0)