diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index d1bcb4374..a968f2b43 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -44,7 +44,7 @@ jobs: - name: Lint templates if: ${{ matrix.target == 'web' }} - run: yarn lint:templates + run: yarn lint:templates - name: Run tests if: ${{ matrix.target == 'web' }} @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.11] steps: - name: Update Package References run: sudo apt-get update @@ -78,6 +78,7 @@ jobs: python3-cachecontrol python3-dev python3-gdal + libgdal-dev - name: Checkout repository uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2e8df58f..0ecd32b54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,8 +22,8 @@ jobs: # "ref" specifies the branch to check out. # "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted ref: ${{ github.event.release.target_commitish }} - - name: Use Node 12 - uses: actions/setup-node@v2 + - name: Use Node 16 + uses: actions/setup-node@v3 with: node-version: '16.14.2' # Specifies the registry, this field is required! @@ -32,8 +32,6 @@ jobs: - run: git config --global user.name "GitHub Bot" - run: git config --global user.email "viame-web@kitware.com" - run: yarn lint - - run: yarn lint:templates - - name: Unit tests run: yarn test if: ${{ matrix.config.os != 'windows-latest' }} diff --git a/client/README.md b/client/README.md index 47d628d60..082ba2b0e 100644 --- a/client/README.md +++ b/client/README.md @@ -29,7 +29,6 @@ yarn build:electron # lint and test yarn lint -yarn lint:templates yarn test # Local verification of all tests, linting, builds diff --git a/client/checkbuild.sh b/client/checkbuild.sh index 257f27dd1..47b4570e8 100755 --- a/client/checkbuild.sh +++ b/client/checkbuild.sh @@ -11,7 +11,6 @@ yarn install --frozen-lockfile yarn test yarn lint & -yarn lint:templates yarn build:web & yarn build:lib & diff --git a/client/dive-common/apispec.ts b/client/dive-common/apispec.ts index a9f697bbf..3323fa63d 100644 --- a/client/dive-common/apispec.ts +++ b/client/dive-common/apispec.ts @@ -1,4 +1,4 @@ -import { provide } from '@vue/composition-api'; +import { provide } from 'vue'; import { AnnotationId, StringKeyObject } from 'vue-media-annotator/BaseAnnotation'; import { GroupData } from 'vue-media-annotator/Group'; diff --git a/client/dive-common/components/AttributeTrackFilter.vue b/client/dive-common/components/AttributeTrackFilter.vue index c31936fe8..79f48ab7e 100644 --- a/client/dive-common/components/AttributeTrackFilter.vue +++ b/client/dive-common/components/AttributeTrackFilter.vue @@ -1,6 +1,6 @@ -