Skip to content

Commit 846540c

Browse files
mikeprosserniMike Prosser
andauthored
rename ni.pythonpanel.v1 to ni.panels.v1 (#29)
Co-authored-by: Mike Prosser <[email protected]>
1 parent 7aa81fa commit 846540c

File tree

15 files changed

+36
-36
lines changed

15 files changed

+36
-36
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
needs: [check_codegen_ni_protobuf_types]
2323
with:
2424
package-name: ni.protobuf.types
25-
check_ni_pythonpanel_v1_proto:
26-
name: Check ni.pythonpanel.v1.proto
25+
check_ni_panels_v1_proto:
26+
name: Check ni.panels.v1.proto
2727
uses: ./.github/workflows/check_package.yml
2828
with:
29-
package-name: ni.pythonpanel.v1.proto
29+
package-name: ni.panels.v1.proto
3030
run_unit_tests:
3131
name: Run unit tests
3232
uses: ./.github/workflows/run_unit_tests.yml
33-
needs: [check_ni_protobuf_types, check_ni_pythonpanel_v1_proto]
33+
needs: [check_ni_protobuf_types, check_ni_panels_v1_proto]
3434
report_test_results:
3535
name: Report test results
3636
uses: ./.github/workflows/report_test_results.yml

.github/workflows/run_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
uses: ./.github/actions/run_and_upload_unit_tests
3232
with:
3333
package-name: ni.protobuf.types
34-
- name: Run and upload unit tests - ni.pythonpanel.v1.proto
34+
- name: Run and upload unit tests - ni.panels.v1.proto
3535
uses: ./.github/actions/run_and_upload_unit_tests
3636
with:
37-
package-name: ni.pythonpanel.v1.proto
37+
package-name: ni.panels.v1.proto
3838
# Run grpc_generator unit tests on its oldest supported version.
3939
- name: Run and upload unit tests - grpc_generator
4040
if: ${{ !contains(fromJSON('["3.9", "3.10"]'), matrix.python-version) }}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Table of Contents
2+
3+
- [Table of Contents](#table-of-contents)
4+
- [About](#about)
5+
- [Operating System Support](#operating-system-support)
6+
- [Python Version Support](#python-version-support)
7+
8+
# About
9+
10+
`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).
11+
12+
NI created and supports this package.
13+
14+
## Operating System Support
15+
16+
`ni.panels.v1.proto` supports Windows and Linux operating systems.
17+
18+
## Python Version Support
19+
20+
`ni.panels.v1.proto` supports CPython 3.9+ and PyPy3.

packages/ni.pythonpanel.v1.proto/pyproject.toml renamed to packages/ni.panels.v1.proto/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tool.poetry]
2-
name = "ni.pythonpanel.v1.proto"
2+
name = "ni.panels.v1.proto"
33
version = "0.1.0"
44
license = "MIT"
5-
description = "Protobuf generated code for the ni.pythonpanel.v1 gRPC API"
5+
description = "Protobuf generated code for the ni.panels.v1 gRPC API"
66
authors = ["NI <[email protected]>"]
77
maintainers = [
88
"Brad Keryan <[email protected]>",
99
"Joe Friedrichsen <[email protected]>",
1010
]
1111
readme = "README.md"
1212
repository = "https://github.com/ni/ni-apis-python"
13-
keywords = ["ni-apis", "protobuf", "pythonpanel"]
13+
keywords = ["ni-apis", "protobuf", "panels"]
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",
1616
"Intended Audience :: Developers",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Package for ni.panels.v1.proto."""
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Tests for the ni.panels.v1.proto package."""

0 commit comments

Comments
 (0)