From 59c0de1bb05a873a92bdcb503d125902cf6dd696 Mon Sep 17 00:00:00 2001 From: jdhughes-usgs Date: Sat, 14 Dec 2019 11:04:33 +0100 Subject: [PATCH 1/2] ci(exes): update executables version to 3.0 --- autotest/build_exes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest/build_exes.py b/autotest/build_exes.py index d3070d2af7..a3155529e1 100644 --- a/autotest/build_exes.py +++ b/autotest/build_exes.py @@ -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' From 51279b4b7a42c1bcadaa5a6e0f8febc0799e6082 Mon Sep 17 00:00:00 2001 From: jdhughes-usgs Date: Sat, 14 Dec 2019 11:48:36 +0100 Subject: [PATCH 2/2] testing(t503): update mf6 version downloaded and tested --- autotest/t503_test.py | 6 +++--- binder/postBuild | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autotest/t503_test.py b/autotest/t503_test.py index c53d0ab34d..e787b092ea 100644 --- a/autotest/t503_test.py +++ b/autotest/t503_test.py @@ -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() @@ -117,4 +118,3 @@ def runmodels(): # or to run just test, pass the example name into runmodel #runmodel('ex30-vilhelmsen-gf') - \ No newline at end of file diff --git a/binder/postBuild b/binder/postBuild index 6cb3e17ac4..5312b19dc1 100644 --- a/binder/postBuild +++ b/binder/postBuild @@ -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