diff --git a/CHANGELOG b/CHANGELOG index ecc61958559475076da1457a1bb548cee6cfe7b4..918d3d0914529fa2d32423733aa1e951f8e70ed5 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +1.0.4 + XXXX/XX/XX + - Specified version on timezonefinder to be less than 4.0.0 (not further support to python 2.7.X) 1.0.3 2019/06/07 - Solved bug on WRF-Chem unit change diff --git a/README.md b/README.md index 0d4378eefd66ff5a75115b8545dd8333f086b95c..262aaaa2382267ea129fe72c1673116f591972f7 100755 --- a/README.md +++ b/README.md @@ -28,4 +28,4 @@ Questions should be send to the HERMESv3 mailing list (hermesv3@bsc.es). In order to join the mailing list, you should send a mail to hermesv3-join@bsc.es (also put marc.guevara@bsc.es) with the following information: -Name, organization and country. \ No newline at end of file +Name, organization and country. \ No newline at end of file diff --git a/conf/hermes.conf b/conf/hermes.conf index 8eb561086fcfb675578a2eeba982e7e67088be89..06efd9765e1d6dcc523be5414b4b016641e40468 100755 --- a/conf/hermes.conf +++ b/conf/hermes.conf @@ -21,8 +21,8 @@ output_model = MONARCH output_attributes = /data/global_attributes.csv # ***** domain_type=[global, regular, lcc, rotated, mercator] ***** -#domain_type = global -domain_type = regular +domain_type = global +# domain_type = regular # domain_type = lcc # domain_type = rotated # domain_type = mercator diff --git a/environment.yml b/environment.yml index 251f3a7b22bae8a6f1cebd94c11d5af210697274..bebcce37b2e46490fde22e27f8e5d1a8de3ebaf5 100755 --- a/environment.yml +++ b/environment.yml @@ -16,7 +16,7 @@ dependencies: - cf_units >= 1.1.3 - esmpy >= 7.1.0r - pytz - - timezonefinder + - timezonefinder < 4.0.0 - mpi4py # Testing - pytest diff --git a/hermesv3_gr/modules/writing/writer_wrf_chem.py b/hermesv3_gr/modules/writing/writer_wrf_chem.py index 968b8c792172e00503133794404ccbbff606d996..364dbcdf1fca6383aa1f7e2d07bad10e4d1706d8 100755 --- a/hermesv3_gr/modules/writing/writer_wrf_chem.py +++ b/hermesv3_gr/modules/writing/writer_wrf_chem.py @@ -257,7 +257,7 @@ class WriterWrfChem(Writer): global_attributes['HISTORY'] = \ 'Code developed by Barcelona Supercomputing Center (BSC, https://www.bsc.es/). ' + \ 'Developer: Carles Tena Medina (carles.tena@bsc.es). ' + \ - 'Reference: Guevara et al., 2018, GMD., in preparation.' + 'Reference: Guevara et al., 2019, GMD., https://doi.org/10.5194/gmd-12-1885-2019' if self.grid.grid_type == 'lcc' or self.grid.grid_type == 'mercator': global_attributes['WEST-EAST_GRID_DIMENSION'] = np.int32(self.grid.nx + 1) diff --git a/setup.py b/setup.py index 48dea1214de4c96229fc4b1c6aee5b235a84f7d1..34e4e16dd1182e6836bbe496e33c5f8d1e29ac8a 100755 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ setup( 'ESMPy>=7.1.0.dev0', 'holidays', 'pytz', - 'timezonefinder', + 'timezonefinder<4.0.0', 'mpi4py', 'pytest', ],