Skip to content

Commit

Permalink
Merge pull request #91 from CIAT-DAPA/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
santiago123x authored Oct 8, 2024
2 parents 3360430 + 7d82d07 commit 927dd4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
python_requires=">=3.9",
entry_points={
'console_scripts': [
'aclimate_resampling=aclimate_resampling.aclimate_run_resampling:main',
Expand All @@ -25,7 +25,7 @@
"attrs==23.1.0",
"affine==2.4.0",
"bokeh==3.2.2",
"cdsapi==0.6.1",
"cdsapi==0.7.2",
"certifi==2023.7.22",
"charset-normalizer==3.2.0",
"click>=7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/aclimate_resampling/complete_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def download_era5_data(self,variables=["t_max","t_min","sol_rad"], test = False)
'variable': enum_variables[v]["name"],
'statistic': enum_variables[v]["statistics"],
'year': year,
'month': month,
'month': [f"{month:02}"],
'day': days,
'version': self.cdsapi_version,
},
Expand Down

0 comments on commit 927dd4f

Please sign in to comment.