Skip to content

Commit

Permalink
py.typed files
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Mar 19, 2024
1 parent 1fee61e commit 437a214
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
run: python3 -m pip list

- name: Check Types
run: python3 -m mypy --module='livekit.protocol' --module='livekit.api' --module 'livekit.rtc'
run: python3 -m mypy -p 'livekit-protocol' -p 'livekit-api' -p 'livekit-rtc'
Empty file.
2 changes: 1 addition & 1 deletion livekit-protocol/livekit/protocol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from . import models
from . import room
from . import webhook
from .version import __version__
from .version import __version__
Empty file.
2 changes: 1 addition & 1 deletion livekit-protocol/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"types-protobuf>=4,<5",
],
package_data={
"livekit.protocol": ["*.pyi", "**/*.pyi"],
"livekit.protocol": ["*.pyi", "**/*.pyi", "py.typed"],
},
project_urls={
"Documentation": "https://docs.livekit.io",
Expand Down
Empty file.

0 comments on commit 437a214

Please sign in to comment.