Skip to content

Commit 3001319

Browse files
committed
Add [compat] entries to the Project.toml.
1 parent 3ef21ac commit 3001319

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.travis.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,38 @@ notifications:
55

66
jobs:
77
allow_failures:
8-
- env: TRAVIS_JULIA_VERSION=nightly
8+
- julia: 1.0
9+
- julia: 1.1
10+
- julia: 1.2
11+
- julia: nightly
912
- os: osx
1013
- os: windows
1114
include:
1215
###### Tests
16+
### Julia 1.0
17+
- stage: "Unit tests"
18+
name: "Unit tests (Julia 1.3) (Linux)"
19+
julia: 1.0
20+
os: linux
21+
script:
22+
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
23+
24+
### Julia 1.1
25+
- stage: "Unit tests"
26+
name: "Unit tests (Julia 1.3) (Linux)"
27+
julia: 1.1
28+
os: linux
29+
script:
30+
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
31+
32+
### Julia 1.2
33+
- stage: "Unit tests"
34+
name: "Unit tests (Julia 1.2) (Linux)"
35+
julia: 1.2
36+
os: linux
37+
script:
38+
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
39+
1340
### Julia 1.3
1441
- stage: "Unit tests"
1542
name: "Unit tests (Julia 1.3) (Linux)"

Project.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ uuid = "5134c85a-a9db-11e9-340f-8514dff59a31"
33
authors = ["Will Shand <wish5031@colorado.edu>"]
44
version = "0.0.1"
55

6+
[compat]
7+
Distributions = "0.22"
8+
Documenter = "0.24"
9+
FFTW = "1.2"
10+
julia = "1.3"
11+
QuadGK = "2.3"
12+
613
[deps]
714
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
815
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

0 commit comments

Comments
 (0)