Skip to content

Commit cd406eb

Browse files
committed
Support ApproxFunBase v0.3
1 parent f993978 commit cd406eb

File tree

4 files changed

+45
-26
lines changed

4 files changed

+45
-26
lines changed

.github/workflows/ci.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
version:
13+
- '1.3'
14+
- '1'
15+
- '^1.6.0-0'
16+
os:
17+
- ubuntu-latest
18+
- macOS-latest
19+
- windows-latest
20+
arch:
21+
- x64
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: julia-actions/setup-julia@v1
25+
with:
26+
version: ${{ matrix.version }}
27+
arch: ${{ matrix.arch }}
28+
- uses: actions/cache@v1
29+
env:
30+
cache-name: cache-artifacts
31+
with:
32+
path: ~/.julia/artifacts
33+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
34+
restore-keys: |
35+
${{ runner.os }}-test-${{ env.cache-name }}-
36+
${{ runner.os }}-test-
37+
${{ runner.os }}-
38+
- uses: julia-actions/julia-buildpkg@v1
39+
- uses: julia-actions/julia-runtest@v1
40+
- uses: julia-actions/julia-processcoverage@v1
41+
- uses: codecov/codecov-action@v1
42+
with:
43+
file: lcov.info

.travis.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1515

1616
[compat]
1717
AbstractFFTs = "0.5, 1"
18-
ApproxFunBase = "0.3"
18+
ApproxFunBase = "0.3, 0.4"
1919
DomainSets = "0.3, 0.4"
2020
FFTW = "1.1"
2121
FastTransforms = "0.10, 0.11, 0.12"

src/ApproxFunFourier.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ import LinearAlgebra: BlasInt, BlasFloat, norm, ldiv!, mul!, det, eigvals, dot,
7171
Tridiagonal, diagm, diagm_container, factorize, nullspace,
7272
Hermitian, Symmetric, adjoint, transpose, char_uplo
7373

74-
import InfiniteArrays: Infinity, InfRanges, AbstractInfUnitRange, OneToInf
74+
import InfiniteArrays: InfRanges, AbstractInfUnitRange, OneToInf
7575

7676
import FastTransforms: ChebyshevTransformPlan, IChebyshevTransformPlan, plan_chebyshevtransform,
7777
plan_chebyshevtransform!, plan_ichebyshevtransform, plan_ichebyshevtransform!

0 commit comments

Comments
 (0)