File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26840,7 +26840,7 @@ try {
26840
26840
const testMatrix = [];
26841
26841
const packages = files.map(file => {
26842
26842
return file.split('/')[1];
26843
- });
26843
+ }).filter(pkg => pkg !== 'lbox-example') ;
26844
26844
const uniquePackages = [... new Set(packages)];
26845
26845
uniquePackages.forEach(package => {
26846
26846
startingMatrix.forEach(matrixItem => {
Original file line number Diff line number Diff line change 38
38
filters : |
39
39
lbox:
40
40
- 'libs/lbox*/**'
41
+ - '!libs/lbox-example/**'
41
42
- id : matrix
42
43
uses : ./.github/actions/lbox-matrix
43
44
with :
54
55
steps :
55
56
- uses : actions/checkout@v4
56
57
with :
57
- # ref: ${{ inputs.tag }}
58
58
ref : ${{ inputs.tag }}
59
59
- name : Install the latest version of rye
60
60
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