Skip to content

Commit 4f7d249

Browse files
Add nitlsconfig to optional gRPC dependencies (#2205)
* Add optional nitslconfig dependency * Update changelog with nitlsconfig
1 parent d9b2a31 commit 4f7d249

11 files changed

Lines changed: 28 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353

5454
#### [nidcpower] Unreleased
5555
- Added
56+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
5657
- Changed
5758
- Removed
5859

@@ -555,6 +556,7 @@
555556

556557
#### [nidigital] Unreleased
557558
- Added
559+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
558560
- Changed
559561
- Removed
560562

@@ -796,6 +798,7 @@
796798

797799
#### [nidmm] Unreleased
798800
- Added
801+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
799802
- Changed
800803
- Removed
801804

@@ -1119,6 +1122,7 @@
11191122

11201123
#### [nifgen] Unreleased
11211124
- Added
1125+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
11221126
- Changed
11231127
- Removed
11241128

@@ -1732,6 +1736,7 @@
17321736

17331737
#### [nirfsa] Unreleased
17341738
- Added
1739+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
17351740
- Changed
17361741
- Removed
17371742

@@ -1749,6 +1754,7 @@
17491754

17501755
#### [nirfsg] Unreleased
17511756
- Added
1757+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
17521758
- Changed
17531759
- Removed
17541760

@@ -1887,6 +1893,7 @@
18871893

18881894
#### [niscope] Unreleased
18891895
- Added
1896+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
18901897
- Changed
18911898
- Removed
18921899

@@ -2498,6 +2505,7 @@
24982505

24992506
#### [niswitch] Unreleased
25002507
- Added
2508+
- (Common) Added `nitlsconfig[grpc]>=1.0.0a1` to the optional gRPC dependencies.
25012509
- Changed
25022510
- Removed
25032511

build/templates/setup.py.mako

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ setup(
5353
'grpc': [
5454
'grpcio>=1.59.0,<2.0',
5555
'protobuf>=4.21.6',
56-
'ni.grpcdevice.v1.proto>=1.0.0'
56+
'ni.grpcdevice.v1.proto>=1.0.0',
57+
'nitlsconfig[grpc]>=1.0.0a1',
5758
],
5859
},
5960
% endif

generated/nidcpower/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def read_contents(file_to_read):
3737
'grpc': [
3838
'grpcio>=1.59.0,<2.0',
3939
'protobuf>=4.21.6',
40-
'ni.grpcdevice.v1.proto>=1.0.0'
40+
'ni.grpcdevice.v1.proto>=1.0.0',
41+
'nitlsconfig[grpc]>=1.0.0a1',
4142
],
4243
},
4344
classifiers=[

generated/nidigital/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ def read_contents(file_to_read):
3838
'grpc': [
3939
'grpcio>=1.59.0,<2.0',
4040
'protobuf>=4.21.6',
41-
'ni.grpcdevice.v1.proto>=1.0.0'
41+
'ni.grpcdevice.v1.proto>=1.0.0',
42+
'nitlsconfig[grpc]>=1.0.0a1',
4243
],
4344
},
4445
classifiers=[

generated/nidmm/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def read_contents(file_to_read):
3737
'grpc': [
3838
'grpcio>=1.59.0,<2.0',
3939
'protobuf>=4.21.6',
40-
'ni.grpcdevice.v1.proto>=1.0.0'
40+
'ni.grpcdevice.v1.proto>=1.0.0',
41+
'nitlsconfig[grpc]>=1.0.0a1',
4142
],
4243
},
4344
classifiers=[

generated/nifake/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def read_contents(file_to_read):
3939
'grpc': [
4040
'grpcio>=1.59.0,<2.0',
4141
'protobuf>=4.21.6',
42-
'ni.grpcdevice.v1.proto>=1.0.0'
42+
'ni.grpcdevice.v1.proto>=1.0.0',
43+
'nitlsconfig[grpc]>=1.0.0a1',
4344
],
4445
},
4546
classifiers=[

generated/nifgen/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ def read_contents(file_to_read):
3838
'grpc': [
3939
'grpcio>=1.59.0,<2.0',
4040
'protobuf>=4.21.6',
41-
'ni.grpcdevice.v1.proto>=1.0.0'
41+
'ni.grpcdevice.v1.proto>=1.0.0',
42+
'nitlsconfig[grpc]>=1.0.0a1',
4243
],
4344
},
4445
classifiers=[

generated/nirfsa/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def read_contents(file_to_read):
3939
'grpc': [
4040
'grpcio>=1.59.0,<2.0',
4141
'protobuf>=4.21.6',
42-
'ni.grpcdevice.v1.proto>=1.0.0'
42+
'ni.grpcdevice.v1.proto>=1.0.0',
43+
'nitlsconfig[grpc]>=1.0.0a1',
4344
],
4445
},
4546
classifiers=[

generated/nirfsg/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def read_contents(file_to_read):
3939
'grpc': [
4040
'grpcio>=1.59.0,<2.0',
4141
'protobuf>=4.21.6',
42-
'ni.grpcdevice.v1.proto>=1.0.0'
42+
'ni.grpcdevice.v1.proto>=1.0.0',
43+
'nitlsconfig[grpc]>=1.0.0a1',
4344
],
4445
},
4546
classifiers=[

generated/niscope/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ def read_contents(file_to_read):
3838
'grpc': [
3939
'grpcio>=1.59.0,<2.0',
4040
'protobuf>=4.21.6',
41-
'ni.grpcdevice.v1.proto>=1.0.0'
41+
'ni.grpcdevice.v1.proto>=1.0.0',
42+
'nitlsconfig[grpc]>=1.0.0a1',
4243
],
4344
},
4445
classifiers=[

0 commit comments

Comments
 (0)