ci(exes): update executables version to 3.0 (#761)

* ci(exes): update executables version to 3.0

* testing(t503): update mf6 version downloaded and tested
develop
Hughes, J.D 2019-12-14 06:25:32 -05:00 committed by GitHub
parent 6e94b279e5
commit 0d2788738d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ except:
os.environ["TRAVIS"] = "1"
download_version = '2.0'
download_version = '3.0'
# path where downloaded executables will be extracted
exe_pth = 'exe_download'

View File

@ -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 @@ if __name__ == '__main__':
# or to run just test, pass the example name into runmodel
#runmodel('ex30-vilhelmsen-gf')

View File

@ -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