Skip to content

Commit 87d4662

Browse files
github-actions[bot]CompatHelper Julialkdvos
authored
CompatHelper: bump compat for TensorKitSectors to 0.1.4, 0.2 + add compat bounds check
* CompatHelper: bump compat for TensorKitSectors to 0.2, (keep existing compat) * Bump minimal TensorKitSectors to v0.1.4 * Add compat lower bounds check --------- Co-authored-by: CompatHelper Julia <[email protected]> Co-authored-by: Lukas Devos <[email protected]>
1 parent 60c7f4d commit 87d4662

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

.github/workflows/CompatCheck.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Compat Check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
- 'main'
8+
- 'release-'
9+
tags: '*'
10+
pull_request:
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
test:
19+
name: Compat bounds check - ${{ matrix.julia-version }}
20+
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
downgrade_mode: ['alldeps']
24+
julia-version: ['1.10', '1']
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: julia-actions/setup-julia@v1
28+
with:
29+
version: ${{ matrix.julia-version }}
30+
- uses: julia-actions/julia-downgrade-compat@v2
31+
with:
32+
mode: ${{ matrix.downgrade_mode }}
33+
skip: Random, LinearAlgebra, Test, Combinatorics
34+
- uses: julia-actions/julia-buildpkg@v1
35+
- uses: julia-actions/julia-runtest@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LinearAlgebra = "1"
3333
PackageExtensionCompat = "1"
3434
Random = "1"
3535
Strided = "2"
36-
TensorKitSectors = "0.1"
36+
TensorKitSectors = "0.1.4, 0.2"
3737
TensorOperations = "5.1"
3838
Test = "1"
3939
TestExtras = "0.2,0.3"

0 commit comments

Comments
 (0)