Skip to content

Commit

Permalink
Merge branch 'master' into lake_precision
Browse files Browse the repository at this point in the history
  • Loading branch information
scrasmussen authored Sep 21, 2022
2 parents 92081dc + 8adbcee commit 6daac45
Show file tree
Hide file tree
Showing 64 changed files with 16,178 additions and 3,340 deletions.
20 changes: 0 additions & 20 deletions .travis.yml.prev

This file was deleted.

2 changes: 1 addition & 1 deletion tests/local/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jsonpickle==1.2
locket==0.2.0
more-itertools==7.2.0
netCDF4==1.4.1
numpy==1.17.1
numpy==1.22.0
pandas==0.23.4
partd==1.0.0
pathlib==1.0.1
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 3 additions & 2 deletions tests/local/utils/gdrive_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def download_file_from_google_drive(id, destination):

session = requests.Session()

response = session.get(URL, params={'id': id}, stream=True)
response = session.get(URL, params={'id': id, 'alt': 'media', 'confirm':'t'}
, stream=True)
token = get_confirm_token(response)

if token:
Expand Down Expand Up @@ -54,4 +55,4 @@ def main():
download_file_from_google_drive(file_id, dest_file)

if __name__ == "__main__":
main()
main()
2 changes: 2 additions & 0 deletions trunk/NDHMS/CPL/NUOPC_cpl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ endif (NOT TARGET esmf)
list(APPEND wrfhydro_nuopc_files
WRFHydro_NUOPC_Cap.F90
WRFHydro_NUOPC_Gluecode.F90
WRFHydro_NUOPC_Fields.F90
WRFHydro_NUOPC_Flags.F90
WRFHydro_ESMF_Extensions.F90
)

Expand Down
15 changes: 13 additions & 2 deletions trunk/NDHMS/CPL/NUOPC_cpl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,14 @@ CAP_MK := wrfhydro.mk

CAP_OBJS := WRFHydro_NUOPC_Cap.o
CAP_OBJS += WRFHydro_NUOPC_Gluecode.o
CAP_OBJS += WRFHydro_NUOPC_Fields.o
CAP_OBJS += WRFHydro_NUOPC_Flags.o
CAP_OBJS += WRFHydro_ESMF_Extensions.o

CAP_MODS := wrfhydro_nuopc.mod
CAP_MODS += wrfhydro_nuopc_gluecode.mod
CAP_MODS += wrfhydro_nuopc_fields.mod
CAP_MODS += wrfhydro_nuopc_flags.mod
CAP_MODS += wrfhydro_esmf_extensions.mod

CAP_FILES := $(CAP_OBJS) $(CAP_MODS) $(CAP_LIB) $(CAP_VERS) $(CAP_MK)
Expand Down Expand Up @@ -143,12 +147,19 @@ nuopcinstall: $(CAP_LIB) $(CAP_MODS) $(CAP_VERS) \
# ############

WRFHydro_NUOPC_Cap.o: WRFHydro_NUOPC_Macros.h \
WRFHydro_NUOPC_Gluecode.o WRFHydro_ESMF_Extensions.o
WRFHydro_NUOPC_Gluecode.o WRFHydro_NUOPC_Fields.o \
WRFHydro_NUOPC_Flags.o WRFHydro_ESMF_Extensions.o
WRFHydro_NUOPC_Gluecode.o: WRFHydro_NUOPC_Macros.h \
WRFHydro_NUOPC_Fields.o WRFHydro_NUOPC_Flags.o \
WRFHydro_ESMF_Extensions.o $(MODEL_MODS)
WRFHydro_NUOPC_Fields.o: WRFHydro_NUOPC_Macros.h \
WRFHydro_NUOPC_Flags.o WRFHydro_ESMF_Extensions.o \
$(MODEL_MODS)

wrfhydro_nuopc.mod: WRFHydro_NUOPC_Cap.o
wrfhydro_nuopc_gluecode.mod: WRFHydro_NUOPC_Gluecode.o
wrfhydro_nuopc_fields.mod: WRFHydro_NUOPC_Fields.o
wrfhydro_nuopc_flags.mod: WRFHydro_NUOPC_Flags.o
wrfhydro_esmf_extensions.mod: WRFHydro_ESMF_Extensions.o

# ###############
Expand Down Expand Up @@ -253,7 +264,7 @@ $(CAP_MK):
# Install Library, Modules, and Makefile Fragment
# -----------------------------------------------------------------------------

$(INSTPATH)/%:
$(INSTPATH)/%: %
@echo $(HR)
@echo "Installing $(notdir $@)"
@echo
Expand Down
Loading

0 comments on commit 6daac45

Please sign in to comment.