We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cefc25 commit 7d68856Copy full SHA for 7d68856
.github/workflows/AddITensorRegistry.yml
.github/workflows/CompatHelper.yml
@@ -13,4 +13,18 @@ jobs:
13
env:
14
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16
- run: julia -e 'using CompatHelper; CompatHelper.main(; use_existing_registries=true)'
+ run: julia -e '
17
+ using CompatHelper
18
+ registries = [
19
+ Pkg.RegistrySpec(
20
+ name = "General",
21
+ uuid = "23338594-aafe-5451-b93e-139f81909106",
22
+ url = "https://github.com/JuliaRegistries/General.git",
23
+ ),
24
25
+ name = "ITensorRegistry",
26
+ uuid = "c4d53e37-7e0e-4be9-ba6f-c27e01f48020",
27
+ url = "https://github.com/ITensor/ITensorRegistry.git",
28
29
+ ]
30
+ CompatHelper.main(; registries)'
0 commit comments