Skip to content

Commit

Permalink
update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Oct 27, 2024
1 parent 0829ecc commit 0278ac6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Requirements to use the library via its CLI
# - last checked/updated: 2024-09-24 (HA 2024.9.3)
#

# library requirements (dependencies) are in pyproject.toml
Expand All @@ -9,8 +8,8 @@


# also required if using the the library via the CLI, client.py
aiofiles >= 23.2.0
aiofiles >= 24.1.0
asyncclick >= 8.1.7 # NOTE: async version (not used by HA)
debugpy >= 1.8.1 # can invoke via CLI
debugpy >= 1.8.7 # can invoke via CLI

# check via: pip list | grep -E 'aiofiles|click|debugpy'
17 changes: 9 additions & 8 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Requirements to dev/test the source code
# - last checked/updated: 2024-09-10
#

# for using the the library with CLI
Expand All @@ -10,23 +9,25 @@
# - pip list | grep -E 'pre-commit|ruff|mypy|types-|voluptuous|pytest|syrup|hatch'

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

# used for development (typing)
mypy >= 1.12.0
types-aiofiles >= 23.2.0 # used only by CLI
mypy >= 1.13.0
types-aiofiles >= 24.1.0 # used only by CLI
types-PyYAML >= 6.0.12 # used only by tests
voluptuous >= 0.15.2

# used for testing
aioresponses >= 0.7.6 # to prevent leaking HTTP requests (not used by HA)
pytest >= 8.3.1
pytest-asyncio >= 0.23.8
pytest >= 8.3.3
pytest-asyncio >= 0.24.0
# pytest-cov >= 5.0.0
pytest-sugar >= 1.0.0
pytest-xdist >= 3.6.1
syrupy >= 4.6.1
syrupy >= 4.7.2

# pytest_homeassistant_custom_component >= 0.13.162

# used for build/deploy (not used by HA)
hatch >= 1.12.0
Expand Down

0 comments on commit 0278ac6

Please sign in to comment.