File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -26838,9 +26838,12 @@ try {
26838
26838
},
26839
26839
];
26840
26840
const testMatrix = [];
26841
+ const excludeRegex = /lbox-example/;
26842
+
26841
26843
const packages = files.map(file => {
26842
26844
return file.split('/')[1];
26843
- });
26845
+ }).filter(pkg => pkg !== null && !excludeRegex.test(pkg));
26846
+
26844
26847
const uniquePackages = [... new Set(packages)];
26845
26848
uniquePackages.forEach(package => {
26846
26849
startingMatrix.forEach(matrixItem => {
@@ -26857,7 +26860,7 @@ try {
26857
26860
});
26858
26861
});
26859
26862
const testMatrixJSON = JSON.stringify(testMatrix);
26860
- core.info("Test Matrix ");
26863
+ core.info("Test Matrixvb ");
26861
26864
core.info(testMatrixJSON);
26862
26865
core.setOutput("test-matrix", testMatrixJSON);
26863
26866
core.info("Publish Matrix");
Original file line number Diff line number Diff line change 54
54
steps :
55
55
- uses : actions/checkout@v4
56
56
with :
57
- # ref: ${{ inputs.tag }}
58
57
ref : ${{ inputs.tag }}
59
58
- name : Install the latest version of rye
60
59
uses : eifinger/setup-rye@v2
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies = [
12
12
" tqdm>=4.66.2" ,
13
13
" geojson>=3.1.0" ,
14
14
" mypy==1.10.1" ,
15
- " lbox-clients==1.1.1 " ,
15
+ " lbox-clients==1.1.2 " ,
16
16
]
17
17
readme = " README.md"
18
18
requires-python = " >=3.9,<3.14"
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " lbox-clients"
3
- version = " 1.1.1 "
3
+ version = " 1.1.2 "
4
4
description = " This module contains client sdk uses to conntect to the Labelbox API and backends"
5
5
authors = [
6
6
{ name = " Labelbox" , email = " engineering@labelbox.com" }
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " lbox-example"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
description = " An example module which can be used to develop other modules under the lbox namespace"
5
5
authors = [
6
6
{ name = " Labelbox" , email = " engineering@labelbox.com" }
You can’t perform that action at this time.
0 commit comments