Skip to content

Commit c3fc0e0

Browse files
authored
chore: update JET & JLArrays compat (#877)
* chore: update JET & JLArrays compat, create workspaces * Remove workspaces for now
1 parent cf6ad3e commit c3fc0e0

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,31 @@ jobs:
2020
version: '1'
2121
arch: ${{ runner.arch }}
2222
if: steps.julia_in_path.outcome != 'success'
23-
- name: "Add the General registry via Git"
23+
- name: 'Add the General registry via Git'
2424
run: |
2525
import Pkg
2626
ENV["JULIA_PKG_SERVER"] = ""
2727
Pkg.Registry.add("General")
2828
shell: julia --color=yes {0}
29-
- name: "Install CompatHelper"
29+
- name: 'Install CompatHelper'
3030
run: |
3131
import Pkg
3232
name = "CompatHelper"
3333
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
3434
version = "3"
3535
Pkg.add(; name, uuid, version)
3636
shell: julia --color=yes {0}
37-
- name: "Run CompatHelper"
37+
- name: 'Run CompatHelper'
3838
run: |
3939
import CompatHelper
40-
CompatHelper.main(subdirs=["DifferentiationInterface", "DifferentiationInterfaceTest"])
40+
CompatHelper.main(subdirs=[
41+
"DifferentiationInterface",
42+
"DifferentiationInterface/test",
43+
"DifferentiationInterface/docs",
44+
"DifferentiationInterfaceTest",
45+
"DifferentiationInterfaceTest/test",
46+
"DifferentiationInterfaceTest/docs",
47+
])
4148
shell: julia --color=yes {0}
4249
env:
4350
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

DifferentiationInterface/test/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ DataFrames = "1.7.0"
2525
Dates = "1"
2626
ExplicitImports = "1.10.1"
2727
InteractiveUtils = "1"
28-
JET = "0.9,0.10"
29-
JLArrays = "0.2.0"
28+
JET = "0.9,0.10,0.11"
29+
JLArrays = "0.2,0.3"
3030
Pkg = "1"
3131
Random = "1"
3232
StableRNGs = "1.0.1"

DifferentiationInterfaceTest/Project.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
3535
DifferentiationInterfaceTestComponentArraysExt = "ComponentArrays"
3636
DifferentiationInterfaceTestFluxExt = ["FiniteDifferences", "Flux", "Functors"]
3737
DifferentiationInterfaceTestJLArraysExt = "JLArrays"
38-
DifferentiationInterfaceTestLuxExt = ["ComponentArrays", "ForwardDiff", "Lux", "LuxTestUtils"]
38+
DifferentiationInterfaceTestLuxExt = [
39+
"ComponentArrays",
40+
"ForwardDiff",
41+
"Lux",
42+
"LuxTestUtils",
43+
]
3944
DifferentiationInterfaceTestStaticArraysExt = "StaticArrays"
4045

4146
[compat]
@@ -50,8 +55,8 @@ FiniteDifferences = "0.12"
5055
Flux = "0.16"
5156
ForwardDiff = "0.10.36,1"
5257
Functors = "0.4, 0.5"
53-
JET = "0.9,0.10"
54-
JLArrays = "0.1, 0.2"
58+
JET = "0.9,0.10,0.11"
59+
JLArrays = "0.1,0.2,0.3"
5560
LinearAlgebra = "1"
5661
Lux = "1.1.0"
5762
LuxTestUtils = "1.3.1, 2"

0 commit comments

Comments
 (0)