File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 66 - osx
77
88julia :
9- - release
9+ - 0.5
10+ - 0.6
1011 - nightly
1112
1213matrix :
13- # testing on OSX is expensive, skip for release
14+ # testing on OSX is expensive, skip for older julia versions
1415 exclude :
1516 - os : osx
16- julia : release
17+ julia : 0.5
18+ allow_failures :
19+ - julia : nightly
1720
1821notifications :
1922 email : false
@@ -24,15 +27,14 @@ addons:
2427 - gfortran
2528
2629before_install :
27- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
2830 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gcc; fi
2931
3032script :
3133 - julia -e 'Pkg.clone(pwd()); Pkg.build("FortranFiles"); Pkg.test("FortranFiles"; coverage=true)'
3234
3335after_success :
3436 # build and deploy documentation
35- - if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_JULIA_VERSION" == "release " ]]; then
37+ - if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_JULIA_VERSION" == "0.5 " ]]; then
3638 julia -e 'Pkg.add("Documenter"); cd(Pkg.dir("FortranFiles")); include(joinpath("docs", "make.jl"))';
3739 fi
3840 # push coverage results to Coveralls and Codecov
Original file line number Diff line number Diff line change 11julia 0.5
2- Compat 0.18
2+ Compat 0.24
Original file line number Diff line number Diff line change 1- import Base: show, bswap
1+ import Base: show
22
33@compat abstract type AccessMode end
44@compat abstract type RecordMarkerType end
@@ -58,6 +58,3 @@ function get_convert(name::String)
5858 error (" unknown convert method \" $name \" " )
5959end
6060
61- # add missing byte-order swapping method
62- bswap {T} (z:: Complex{T} ) = complex (bswap (z. re), bswap (z. im))
63-
You can’t perform that action at this time.
0 commit comments