Skip to content

Commit

Permalink
update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Dec 4, 2024
1 parent 8e4deba commit ec9b84b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.8.1
hooks:
- id: ruff # linter
- id: ruff-format # formatter

- repo: https://github.com/cdce8p/python-typing-update
rev: v0.6.0
rev: v0.7.0
hooks:
# Run `python-typing-update` hook manually from time to time
# to update python typing syntax.
Expand Down
4 changes: 2 additions & 2 deletions custom_components/ramses_cc/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"loggers": ["ramses_rf"],
"requirements": [
"pyserial-asyncio-fast>=0.13",
"ramses-rf==0.43.0"
"ramses-rf==0.50.0"
],
"config_flow": true,
"single_config_entry": true,
"type": "hub",
"version": "0.43.0"
"version": "0.50.0"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
[tool.ruff]
# exclude = ["tests/deprecated/*.py"]
src = ["custom_components"]
target-version = "py312"
target-version = "py313"


[tool.ruff.lint]
Expand Down
8 changes: 4 additions & 4 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
# requirements (dependencies) are in manifest.json
# - pip list | grep -E 'ramses|serial'

ramses_rf == 0.42.0 # as per: manifest.json
ramses_rf == 0.50.0 # as per: manifest.json
pyserial-asyncio-fast >= 0.13 # as per: manifest.json


# libraries required for development (lint/type/test)...
# - pip list | grep -E 'pre-commit|ruff|mypy|types-|voluptuous'

# used for development (linting)
pre-commit >= 3.7.1
ruff >= 0.6.4 # also: pre-commit-config.yaml
pre-commit >= 4.0.1
ruff >= 0.8.1 # also: pre-commit-config.yaml

# used for development (typing)
mypy >= 1.11.1
mypy >= 1.13.0
types-paho-mqtt >= 1.6.0
voluptuous >= 0.15.2
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# used for testing (incl. HA, pytest*, syrupy, voluptuous, etc.)
# - pytest

pytest_homeassistant_custom_component >= 0.13.162
pytest_homeassistant_custom_component >= 0.13.189

0 comments on commit ec9b84b

Please sign in to comment.