Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
- 'lts'
- '1'
os:
Expand All @@ -39,6 +39,13 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- name: Add Julia Registries
run: |
julia -e '
using Pkg
Pkg.Registry.add(
RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git")
)'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.version == 'nightly' }}
Expand All @@ -52,6 +59,13 @@ jobs:
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Add Julia Registries
run: |
julia -e '
using Pkg
Pkg.Registry.add(
RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git")
)'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
Expand Down
18 changes: 14 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
name = "T4AMPOContractions"
uuid = "953bfbbc-cb66-4acc-a854-9589b1f489b2"
version = "0.9.19"
authors = ["Simone Foderà <[email protected]>", "Ritter.Marc <[email protected]>, Hiroshi Shinaoka <[email protected]> and contributors"]
version = "0.9.18"

[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
MPIPreferences = "3da0fdf6-3ccc-4f1b-acd9-58baa6c99267"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
T4ATensorCI = "14428447-6903-48c7-83df-f2cb08af9918"
T4ATensorTrain = "ec6ec972-96ae-4a21-b859-3911b77e305f"

[compat]
Aqua = "0.8.14"
JET = "0.11.3"
MPI = "0.20.22"
MPIPreferences = "0.1.11"
Random = "1.10.0"
T4ATensorCI = "0.11"
julia = "1.6"
Random = "1"
T4ATensorCI = "0.12"
T4ATensorTrain = "0.2"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand All @@ -27,3 +33,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[targets]
test = ["Aqua", "Test", "Random", "Zygote", "Optim", "JET"]

[sources]
T4ATensorCI = {path = "../T4ATensorCI.jl"}
T4ATensorTrain = {path = "../T4ATensorTrain.jl"}
6 changes: 4 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
T4AMPOContractions = "953bfbbc-cb66-4acc-a854-9589b1f489b2"
TensorCrossInterpolation = "b261b2ec-6378-4871-b32e-9173bb050604"

[weakdeps]
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"

[sources]
T4AMPOContractions = {path = "/Users/hiroshi/projects/JuliaUmbrella/T4AMPOContractions.jl"}
T4AMPOContractions = {path = ".."}
Loading
Loading