-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from dingraha/FLOWMath_compat
Bump FLOWMath compat to 0.4
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,20 @@ jobs: | |
julia-version: ['1.6', '1'] | ||
julia-arch: [x64] | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
exclude: | ||
# https://discourse.julialang.org/t/running-ci-for-julia-1-6-on-github-macos-runners-seems-to-fail/116577/3 | ||
# macOS-latest implies arm64, which isn't available for Julia 1.6, so skip that. | ||
- os: macOS-latest | ||
julia-version: 1.6 | ||
|
||
include: | ||
# macOS-13 appears to be the last x64 macOS. | ||
- os: macOS-13 | ||
julia-version: 1.6 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
- uses: julia-actions/julia-runtest@master | ||
- uses: julia-actions/julia-runtest@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "CCBlade" | ||
uuid = "e1828068-15df-11e9-03e4-ef195ea46fa4" | ||
authors = ["Andrew Ning <[email protected]>"] | ||
version = "0.2.5" | ||
version = "0.2.6" | ||
|
||
[deps] | ||
FLOWMath = "6cb5d3fb-0fe8-4cc2-bd89-9fe0b19a99d3" | ||
|
@@ -10,6 +10,6 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | |
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[compat] | ||
FLOWMath = "0.3" | ||
FLOWMath = "0.3, 0.4" | ||
ImplicitAD = "0.3.1" | ||
julia = "1.6" |