File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26838,9 +26838,12 @@ try {
2683826838 },
2683926839 ];
2684026840 const testMatrix = [];
26841+ const excludeRegex = /lbox-example/;
26842+
2684126843 const packages = files.map(file => {
2684226844 return file.split('/')[1];
26843- });
26845+ }).filter(pkg => pkg !== null && !excludeRegex.test(pkg));
26846+
2684426847 const uniquePackages = [... new Set(packages)];
2684526848 uniquePackages.forEach(package => {
2684626849 startingMatrix.forEach(matrixItem => {
@@ -26857,7 +26860,7 @@ try {
2685726860 });
2685826861 });
2685926862 const testMatrixJSON = JSON.stringify(testMatrix);
26860- core.info("Test Matrix ");
26863+ core.info("Test Matrixvb ");
2686126864 core.info(testMatrixJSON);
2686226865 core.setOutput("test-matrix", testMatrixJSON);
2686326866 core.info("Publish Matrix");
Original file line number Diff line number Diff line change 5454 steps :
5555 - uses : actions/checkout@v4
5656 with :
57- # ref: ${{ inputs.tag }}
5857 ref : ${{ inputs.tag }}
5958 - name : Install the latest version of rye
6059 uses : eifinger/setup-rye@v2
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies = [
1212 " tqdm>=4.66.2" ,
1313 " geojson>=3.1.0" ,
1414 " mypy==1.10.1" ,
15- " lbox-clients==1.1.1 " ,
15+ " lbox-clients==1.1.2 " ,
1616]
1717readme = " README.md"
1818requires-python = " >=3.9,<3.14"
Original file line number Diff line number Diff line change 11[project ]
22name = " lbox-clients"
3- version = " 1.1.1 "
3+ version = " 1.1.2 "
44description = " This module contains client sdk uses to conntect to the Labelbox API and backends"
55authors = [
66 { name = " Labelbox" , email = " engineering@labelbox.com" }
Original file line number Diff line number Diff line change 11[project ]
22name = " lbox-example"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44description = " An example module which can be used to develop other modules under the lbox namespace"
55authors = [
66 { name = " Labelbox" , email = " engineering@labelbox.com" }
You can’t perform that action at this time.
0 commit comments