Skip to content

Commit 94e8315

Browse files
committed
Julia 1.0 [ci skip]
1 parent 2df1b80 commit 94e8315

File tree

2 files changed

+11
-19
lines changed

2 files changed

+11
-19
lines changed

.travis.yml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
language: python
2-
sudo: required
3-
dist: xenial
42
group: travis_latest
53

64
git:
@@ -9,31 +7,25 @@ git:
97

108
python:
119
- 3.6
12-
- 3.7
1310

1411
os:
1512
- linux
1613

1714
env: FC=gfortran-6
1815

19-
# FIXME: temporary for travis xenial
20-
#addons:
21-
# apt:
22-
# sources: ubuntu-toolchain-r-test
23-
# packages: gfortran-6
16+
addons:
17+
apt:
18+
sources: ubuntu-toolchain-r-test
19+
packages: gfortran-6
2420

2521

2622
before_install:
27-
- if [[ $TRAVIS_OS_NAME == osx ]]; then
28-
brew update > /dev/null;
29-
brew install gcc > /dev/null || brew link --overwrite gcc > /dev/null;
30-
export FC=gfortran;
31-
brew install opencoarrays > /dev/null;
32-
else
33-
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y > /dev/null;
34-
sudo apt-get update -q > /dev/null;
35-
sudo apt-get install -yq gfortran-6 > /dev/null;
36-
fi
23+
- if [[ $TRAVIS_OS_NAME == osx ]]; then
24+
brew update > /dev/null;
25+
brew install gcc > /dev/null || brew link --overwrite gcc > /dev/null;
26+
export FC=gfortran;
27+
brew install opencoarrays > /dev/null;
28+
fi
3729

3830
install:
3931
- pip install -e .[tests]

lineClipping.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The MIT License (MIT)
44
Copyright (c) 2018 Michael Hirsch, Ph.D.
55
=#
6-
using Base.Test
6+
using Test
77

88
function cohensutherland(xmin, ymax, xmax, ymin, x1, y1, x2, y2)
99
#=

0 commit comments

Comments
 (0)