mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2026-04-11 08:16:19 +00:00
fix: Adapt versioning scheme to Home Assistant and switch to uv (#896)
Some checks failed
Bump Version / Bump Version Workflow (push) Has been cancelled
docker-build / platform-excludes (push) Has been cancelled
docker-build / build (push) Has been cancelled
docker-build / merge (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Run Pytest on Pull Request / test (push) Has been cancelled
Some checks failed
Bump Version / Bump Version Workflow (push) Has been cancelled
docker-build / platform-excludes (push) Has been cancelled
docker-build / build (push) Has been cancelled
docker-build / merge (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Run Pytest on Pull Request / test (push) Has been cancelled
Home Assistant expects versioning always increases numbers. Add a date component to the development version to comply with this expectation. The scheme is now 0.0.0.dev<date><hash>. Use uv for creating and managing the virtual environment for developement. This enourmously speeds up dependency updates. For this change dependency requirements are now solely handled in pyproject.toml. requirements.tx and requirements-dev.txt are deleted. Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
@@ -31,14 +31,14 @@ repos:
|
||||
|
||||
# --- Static type checking ---
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: v1.18.2
|
||||
rev: v1.19.1
|
||||
hooks:
|
||||
- id: mypy
|
||||
additional_dependencies:
|
||||
- types-requests==2.32.4.20250913
|
||||
- pandas-stubs==2.3.2.250926
|
||||
- pandas-stubs==3.0.0.260204
|
||||
- tokenize-rt==6.2.0
|
||||
- types-docutils==0.22.2.20251006
|
||||
- types-docutils==0.22.3.20251115
|
||||
- types-PyYaml==6.0.12.20250915
|
||||
pass_filenames: false
|
||||
|
||||
@@ -59,23 +59,29 @@ repos:
|
||||
# Validate commit messages (using Python wrapper)
|
||||
- id: commitizen-commit
|
||||
name: Commitizen (venv-aware)
|
||||
entry: python3 scripts/cz_check_commit_message.py
|
||||
language: system
|
||||
entry: scripts/cz_check_commit_message.py
|
||||
language: python
|
||||
additional_dependencies:
|
||||
- .
|
||||
stages: [commit-msg]
|
||||
pass_filenames: false
|
||||
|
||||
# Branch name check on push (using Python wrapper)
|
||||
- id: commitizen-branch
|
||||
name: Commitizen branch check
|
||||
entry: python3 scripts/cz_check_branch.py
|
||||
language: system
|
||||
entry: scripts/cz_check_branch.py
|
||||
language: python
|
||||
additional_dependencies:
|
||||
- .
|
||||
stages: [pre-push]
|
||||
pass_filenames: false
|
||||
|
||||
# Validate new commit messages before push (using Python wrapper)
|
||||
- id: commitizen-new-commits
|
||||
name: Commitizen (check new commits only, .venv aware)
|
||||
entry: python3 -m scripts.cz_check_new_commits
|
||||
language: system
|
||||
entry: scripts/cz_check_new_commits.py
|
||||
language: python
|
||||
additional_dependencies:
|
||||
- .
|
||||
stages: [pre-push]
|
||||
pass_filenames: false
|
||||
|
||||
Reference in New Issue
Block a user