Skip to content

Commit

Permalink
Fixing Pyright
Browse files Browse the repository at this point in the history
  • Loading branch information
YpNo committed Oct 7, 2024
1 parent d2b698f commit 91b73cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python3 -m pip install -r requirements.txt
- name: Venv in Github Path
run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extend-exclude = '''

[project]
name = "arlo-camera-streamer"
dynamic = ["version"]
dynamic = ["version","readme","dependencies"]
description = "Continuous streaming for Arlo cameras"
license = { text = "MIT" }
requires-python = ">=3.9"
Expand Down Expand Up @@ -48,4 +48,8 @@ classifiers = [
]

[tool.setuptools]
py-modules = []
py-modules = []
packages = []

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

0 comments on commit 91b73cb

Please sign in to comment.