Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZygoteRules -> ChainRules (2) #237

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
42 changes: 0 additions & 42 deletions .github/workflows/benchmark.yml

This file was deleted.

19 changes: 8 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,15 @@ jobs:
strategy:
matrix:
julia-version:
- '1.7'
- '1.6'
- 'nightly'
envname: ["main"]
envname: ["jl_1_6"]
include:
- julia-version: '1.5'
envname: "jl14"
- julia-version: '1.4'
envname: "jl14"
- julia-version: '1.0'
envname: "jl10"
- julia-version: '1.0'
envname: "old"
- julia-version: '1.8'
envname: "jl_1_8"
- julia-version: '1.8'
envname: "jl_1_9"
- julia-version: 'nightly'
envname: "jl_1_10"
fail-fast: false
name: Test Julia ${{ matrix.julia-version }}
steps:
Expand All @@ -37,6 +33,7 @@ jobs:
# Use `JULIA_PKG_SERVER` mitigation implemented in julia-buildpkg:
- uses: julia-actions/julia-buildpkg@v1
- run: julia -e 'using Pkg; pkg"add [email protected]"'
- run: julia -e 'using Pkg; pkg"activate ${{ matrix.envname }}"; pkg"instantiate"'
- run: julia -e 'using Run; Run.prepare("test/environments/${{ matrix.envname }}")'
- run: julia -e 'using Run; Run.test(project="test/environments/${{ matrix.envname }}")'
- uses: julia-actions/julia-processcoverage@v1
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ authors = ["Takafumi Arakaki <[email protected]>"]
version = "0.3.38-DEV"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
Future = "9fa8497b-333b-5362-9e8d-4d0656e87820"
Expand All @@ -12,17 +13,16 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"

[compat]
ChainRulesCore = "1.0"
Compat = "2.0, 3.0, 4.0"
ConstructionBase = "0.1, 1.0"
InitialValues = "0.2.4, 0.3"
Requires = "0.5, 1.0"
Setfield = "0.5.1, 0.6, 0.7, 0.8, 1"
Tables = "0.2, 1.0"
ZygoteRules = "0.1, 0.2"
julia = "1.0"
julia = "1.6"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
Loading