File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26840,7 +26840,8 @@ try {
2684026840 const testMatrix = [];
2684126841 const packages = files.map(file => {
2684226842 return file.split('/')[1];
26843- });
26843+ }).filter(pkg => pkg !== 'lbox-example'); // Add filter to exclude lbox-example
26844+
2684426845 const uniquePackages = [... new Set(packages)];
2684526846 uniquePackages.forEach(package => {
2684626847 startingMatrix.forEach(matrixItem => {
Original file line number Diff line number Diff line change 3838 filters : |
3939 lbox:
4040 - 'libs/lbox*/**'
41+ - '!libs/lbox-example/**'
4142 - id : matrix
4243 uses : ./.github/actions/lbox-matrix
4344 with :
5455 steps :
5556 - uses : actions/checkout@v4
5657 with :
57- # ref: ${{ inputs.tag }}
5858 ref : ${{ inputs.tag }}
5959 - name : Install the latest version of rye
6060 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 =
" [email protected] " }
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 =
" [email protected] " }
You can’t perform that action at this time.
0 commit comments