Skip to content

Commit 3a8a67d

Browse files
authored
Merge pull request #8 from csdms/mdpiper/updates-from-joss-review
Updates from JOSS review
2 parents 17d7d72 + 6d77de9 commit 3a8a67d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ before_install:
4242
fi
4343
- |
4444
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
4646
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
4848
fi
4949
- bash $HOME/miniconda.sh -b -p $HOME/anaconda
5050
- export PATH="$HOME/anaconda/bin:$PATH"

bmipy/bmi.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
from abc import ABC, abstractmethod
29
from typing import Tuple
310

@@ -12,7 +19,7 @@ def initialize(self, config_file: str) -> None:
1219
Perform all tasks that take place before entering the model's time
1320
loop, including opening files and initializing the model state. Model
1421
inputs are read from a text-based configuration file, specified by
15-
`filename`.
22+
`config_file`.
1623
1724
Parameters
1825
----------

0 commit comments

Comments
 (0)