Skip to content

Commit 3d7d8b3

Browse files
committed
fix issues
1 parent 49e8cd9 commit 3d7d8b3

File tree

6 files changed

+42
-18
lines changed

6 files changed

+42
-18
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ jobs:
2424
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
2525
export PATH="$HOME/.local/bin:$PATH"
2626
uv sync
27+
uv sync --dev
2728
- name: Run QA
2829
run: make qa

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
3131
export PATH="$HOME/.local/bin:$PATH"
3232
uv sync
33+
uv sync --dev
3334
- name: Run QA
3435
run: make qa
3536
- name: Get next version

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Python folders
22
__pycache__/
3+
*.pyc
4+
*.pyo
5+
*.pyd
6+
*.egg-info/
7+
*.egg/
8+
.pytest_cache/
9+
.mypy_cache/
10+
.ruff_cache/
11+
.pytype/
12+
13+
# Package managers
14+
.uv/
15+
__pypackages__/
16+
pip-wheel-metadata/
17+
18+
# Virtual environments
19+
venv/
20+
env/
21+
.venv/
22+
.env/
23+
24+
# Build and distribution
25+
build/
26+
dist/
27+
28+
# Testing and coverage
29+
.coverage
30+
.coverage.*
31+
htmlcov/
32+
.tox/
33+
34+
# IDE
35+
.idea/
36+
.vscode/
37+
.ipynb_checkpoints/
338

439
# OS generated files and folders
540
.DS_Store

Makefile

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,6 @@ analyze:
1111
build: qa clean
1212
@echo "Build prepared."
1313

14-
clean:
15-
@echo "Cleaning up..."
16-
@find . -type d -name __pycache__ -exec rm -rf {} +
17-
@find . -type f -name "*.pyc" -delete
18-
@find . -type f -name "*.pyo" -delete
19-
@find . -type f -name "*.pyd" -delete
20-
@find . -type f -name ".coverage" -delete
21-
@find . -type d -name "*.egg-info" -exec rm -rf {} +
22-
@find . -type d -name "*.egg" -exec rm -rf {} +
23-
@find . -type d -name ".pytest_cache" -exec rm -rf {} +
24-
@find . -type d -name ".mypy_cache" -exec rm -rf {} +
25-
@rm -rf build/ dist/ .coverage htmlcov/
26-
2714
coverage:
2815
@echo "Checking test coverage..."
2916
@uv run pytest --cov=$(PACKAGE) --cov-report=term-missing $(TEST_DIR)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dev = [
1919
"pytest-cov==5.0.0",
2020
"ruff==0.11.13",
2121
"bandit==1.7.7",
22-
"pyright==1.1.401",
22+
"pyright==1.1.402",
2323
]
2424

2525
[build-system]

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)