File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ before_install:
42
42
fi
43
43
- |
44
44
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
45
- curl https://repo.continuum.io /miniconda/Miniconda3-latest-MacOSX-x86_64.sh > $HOME/miniconda.sh
45
+ curl https://repo.anaconda.com /miniconda/Miniconda3-latest-MacOSX-x86_64.sh > $HOME/miniconda.sh
46
46
else
47
- curl https://repo.continuum.io /miniconda/Miniconda3-latest-Linux-x86_64.sh > $HOME/miniconda.sh
47
+ curl https://repo.anaconda.com /miniconda/Miniconda3-latest-Linux-x86_64.sh > $HOME/miniconda.sh
48
48
fi
49
49
- bash $HOME/miniconda.sh -b -p $HOME/anaconda
50
50
- export PATH="$HOME/anaconda/bin:$PATH"
Original file line number Diff line number Diff line change
1
+ """The Basic Model Interface (BMI) Python specification.
2
+
3
+ This language specification is derived from the Scientific Interface
4
+ Definition Language (SIDL) file bmi.sidl located at
5
+ https://github.com/csdms/bmi.
6
+ """
7
+
1
8
from abc import ABC , abstractmethod
2
9
from typing import Tuple
3
10
@@ -12,7 +19,7 @@ def initialize(self, config_file: str) -> None:
12
19
Perform all tasks that take place before entering the model's time
13
20
loop, including opening files and initializing the model state. Model
14
21
inputs are read from a text-based configuration file, specified by
15
- `filename `.
22
+ `config_file `.
16
23
17
24
Parameters
18
25
----------
You can’t perform that action at this time.
0 commit comments