Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
needs: [check_codegen_ni_protobuf_types]
with:
package-name: ni.protobuf.types
check_ni_pythonpanel_v1_proto:
name: Check ni.pythonpanel.v1.proto
check_ni_panels_v1_proto:
name: Check ni.panels.v1.proto
uses: ./.github/workflows/check_package.yml
with:
package-name: ni.pythonpanel.v1.proto
package-name: ni.panels.v1.proto
run_unit_tests:
name: Run unit tests
uses: ./.github/workflows/run_unit_tests.yml
needs: [check_ni_protobuf_types, check_ni_pythonpanel_v1_proto]
needs: [check_ni_protobuf_types, check_ni_panels_v1_proto]
report_test_results:
name: Report test results
uses: ./.github/workflows/report_test_results.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
uses: ./.github/actions/run_and_upload_unit_tests
with:
package-name: ni.protobuf.types
- name: Run and upload unit tests - ni.pythonpanel.v1.proto
- name: Run and upload unit tests - ni.panels.v1.proto
uses: ./.github/actions/run_and_upload_unit_tests
with:
package-name: ni.pythonpanel.v1.proto
package-name: ni.panels.v1.proto
# Run grpc_generator unit tests on its oldest supported version.
- name: Run and upload unit tests - grpc_generator
if: ${{ !contains(fromJSON('["3.9", "3.10"]'), matrix.python-version) }}
Expand Down
20 changes: 20 additions & 0 deletions packages/ni.panels.v1.proto/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Table of Contents

- [Table of Contents](#table-of-contents)
- [About](#about)
- [Operating System Support](#operating-system-support)
- [Python Version Support](#python-version-support)

# About

`ni.panels.v1.proto` is a Python package that provides Protobuf generated code for the [ni.panels.v1 gRPC API](https://github.com/ni/ni-apis/tree/main/ni/panels/v1).

NI created and supports this package.

## Operating System Support

`ni.panels.v1.proto` supports Windows and Linux operating systems.

## Python Version Support

`ni.panels.v1.proto` supports CPython 3.9+ and PyPy3.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tool.poetry]
name = "ni.pythonpanel.v1.proto"
name = "ni.panels.v1.proto"
version = "0.1.0"
license = "MIT"
description = "Protobuf generated code for the ni.pythonpanel.v1 gRPC API"
description = "Protobuf generated code for the ni.panels.v1 gRPC API"
authors = ["NI <[email protected]>"]
maintainers = [
"Brad Keryan <[email protected]>",
"Joe Friedrichsen <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/ni/ni-apis-python"
keywords = ["ni-apis", "protobuf", "pythonpanel"]
keywords = ["ni-apis", "protobuf", "panels"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Package for ni.panels.v1.proto."""
1 change: 1 addition & 0 deletions packages/ni.panels.v1.proto/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Tests for the ni.panels.v1.proto package."""
5 changes: 5 additions & 0 deletions packages/ni.panels.v1.proto/tests/unit/test_placeholder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Tests for the ni.panels.v1.proto package."""


def test___placeholder() -> None:
pass
20 changes: 0 additions & 20 deletions packages/ni.pythonpanel.v1.proto/README.md

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion packages/ni.pythonpanel.v1.proto/tests/__init__.py

This file was deleted.

This file was deleted.