Skip to content

Commit fc6e59b

Browse files
committed
Requires Julia 1.2
1 parent 74a78ad commit fc6e59b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
environment:
22
matrix:
3-
- julia_version: 1
43
- julia_version: 1.4
54
- julia_version: nightly
65

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 1.0
87
- 1.4
98
- nightly
109
notifications:

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,22 @@ ShallowWaters is fully-explicit with an energy and enstrophy conserving advectio
1515

1616
Please feel free to raise an [issue](https://github.com/milankl/ShallowWaters.jl/issues) if you discover bugs or have an idea how to improve ShallowWaters.
1717

18+
Requires: Julia 1.2
19+
1820
### How to use
1921

20-
`RunModel` initialises the model, preallocates memory and starts the time integration. You find the options and default parameters in `src/DefaultParameters.jl` (or by typing `?Parameter`).
22+
`RunModel` initialises the model, preallocates memory and starts the time integration. You find the options and default parameters in `src/DefaultParameters.jl` (or by typing `?Parameter`).
2123
```julia
2224
help?> Parameter
2325
search: Parameter
2426

2527
Creates a Parameter struct with following options and default values
2628

2729
T::DataType=Float32 # number format
28-
30+
2931
Tprog::DataType=T # number format for prognostic variables
3032
Tcomm::DataType=Tprog # number format for ghost-point copies
31-
33+
3234
# DOMAIN RESOLUTION AND RATIO
3335
nx::Int=100 # number of grid cells in x-direction
3436
Lx::Real=2000e3 # length of the domain in x-direction [m]

0 commit comments

Comments
 (0)