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

Remove support for Julia prior to 1.0 #2

Merged
merged 5 commits into from
Sep 24, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump minimum required Julia version to 1.0
And accordingly, stop testing on 0.6 and 0.7, but while at it, test on 
1.2 and 1.3.
  • Loading branch information
martinholters committed Sep 20, 2019
commit 5d613bf2178a3fc5426b0e1820cb5973b2a1f586
19 changes: 6 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: julia
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- 1.2
- 1.3
- nightly
notifications:
email: false
Expand All @@ -23,18 +23,11 @@ jobs:
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
- julia --project=docs/ docs/make.jl
- <<: *docs
julia: 0.7
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate()'
- julia -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()))'
- julia --project=docs/ docs/make.jl
- <<: *docs
julia: 1.1
- <<: *docs
julia: nightly
julia: 1.2
- <<: *docs
julia: 0.6
script:
- julia -e 'Pkg.add("Documenter", v"0.19.6", v"0.19.6+"); Pkg.clone(pwd())'
- julia docs/make.jl
julia: 1.3
- <<: *docs
julia: nightly
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
julia 0.6
julia 1.0
Compat 1.1.0
DataStructures 0.2.9
IterTools 0.1.0
Expand Down