-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The west package contains type annotations, but mypy doesn't know about them because of a missing metadata file. This prevents us from type-checking calls into the west APIs, which we should be able to do. Add the necessary metadata to make this work. Signed-off-by: Martí Bolívar <[email protected]>
- Loading branch information
1 parent
37a4b7d
commit d9f00e2
Showing
3 changed files
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include src/west/west-commands-schema.yml | ||
include src/west/manifest-schema.yml | ||
include src/west/py.typed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,4 +49,5 @@ | |
], | ||
python_requires='>=3.8', | ||
entry_points={'console_scripts': ('west = west.app.main:main',)}, | ||
zip_safe=False | ||
) |
Empty file.