Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autotest/build_exes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

os.environ["TRAVIS"] = "1"

download_version = '2.0'
download_version = '3.0'

# path where downloaded executables will be extracted
exe_pth = 'exe_download'
Expand Down
6 changes: 3 additions & 3 deletions autotest/t503_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ def download_mf6_distribution():
"""

# set url
dirname = 'mf6.0.3'
url = 'https://water.usgs.gov/ogw/modflow/{0}.zip'.format(dirname)
dirname = 'mf6.1.0'
url = 'https://water.usgs.gov/water-resources/software/' + \
'MODFLOW-6/{0}.zip'.format(dirname)

# create folder for mf6 distribution download
cpth = os.getcwd()
Expand Down Expand Up @@ -117,4 +118,3 @@ def runmodels():

# or to run just test, pass the example name into runmodel
#runmodel('ex30-vilhelmsen-gf')

2 changes: 1 addition & 1 deletion binder/postBuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

curl -L -o linux.zip https://github.com/MODFLOW-USGS/executables/releases/download/2.0/linux.zip?raw=true
curl -L -o linux.zip https://github.com/MODFLOW-USGS/executables/releases/download/3.0/linux.zip?raw=true
mkdir binaries
unzip linux.zip -d binaries
rm linux.zip