Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup after matter_idl, matter_yamltests PR merged #24283

Merged
merged 1 commit into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
pw_python_pip_install("pip_install_matter_packages") {
packages = [
"//examples/common/pigweed/rpc_console:chip_rpc_distribution",
"//scripts:yamltests_distribution",
"//scripts:matter_yamltests_distribution",
]
}

Expand Down
6 changes: 3 additions & 3 deletions scripts/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import("$dir_pw_build/python_dist.gni")

# This target creates a single Python package and wheel for yamltests. It will
# merge all Python dependencies Matter. The output is located in:
# out/obj/yamltests_distribution/ <- source files here
# out/obj/yamltests_distribution._build_wheel/yamltests-0.0.1-py3-none-any.whl
pw_python_distribution("yamltests_distribution") {
# out/obj/matter_yamltests_distribution/ <- source files here
# out/obj/matter_yamltests_distribution._build_wheel/matter_yamltests-0.0.1-py3-none-any.whl
pw_python_distribution("matter_yamltests_distribution") {
packages = [ "${chip_root}/scripts/py_matter_yamltests:matter_yamltests" ]
generate_setup_cfg = {
common_config_file = "common_setup.cfg"
Expand Down
2 changes: 1 addition & 1 deletion scripts/py_matter_yamltests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


"""The yamltests package."""
"""The matter_yamltests package."""

import setuptools # type: ignore

Expand Down