Skip to content

Commit

Permalink
Set minimum supported Julia version to 1.10 (#224)
Browse files Browse the repository at this point in the history
* Set minimum supported Julia version to 1.10

Julia 1.10 is the new LTS release and some of the libraries we commonly use Tenet with, such as Enzyme and Reactant, no longer support Julia 1.9 or lower.

As such, I propose to lift the minimum Julia version to 1.10, and leave there untouched for a while.

* Remove Julia 1.9 from CI

* Fix version name
  • Loading branch information
mofeing authored Oct 30, 2024
1 parent 5a430a6 commit e02a639
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
- '1.11'
os:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
version:
- '1.9'
- '1.10'
os:
- ubuntu-latest
arch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
version: '1.10'

- uses: actions/checkout@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@ ITensorNetworks = "0.11"
ITensors = "0.6"
KeywordDispatch = "0.3"
KrylovKit = "0.7, 0.8"
LinearAlgebra = "1.9"
LinearAlgebra = "1.10"
Makie = "0.18,0.19,0.20, 0.21"
OMEinsum = "0.7, 0.8"
PythonCall = "0.9"
Quac = "0.3"
Random = "1.9"
Random = "1.10"
Reactant = "0.2"
ScopedValues = "1"
Serialization = "1.9"
SparseArrays = "1.9"
UUIDs = "1.9"
Serialization = "1.10"
SparseArrays = "1.10"
UUIDs = "1.10"
YaoBlocks = "0.13"
julia = "1.9"
julia = "1.10"

0 comments on commit e02a639

Please sign in to comment.