Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cftime to avoid out of bounds datetime when decoding non-CF time coordinates #283

Merged
merged 13 commits into from
Aug 2, 2022
8 changes: 7 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ repos:
- id: mypy
args: ["--config=setup.cfg"]
additional_dependencies:
[dask==2022.6.1, numpy==1.23.0, pandas==1.4.3, xarray==2022.3.0]
[
dask==2022.6.1,
numpy==1.22.4,
pandas==1.4.3,
xarray==2022.3.0,
types-python-dateutil==2.8.2,
tomvothecoder marked this conversation as resolved.
Show resolved Hide resolved
]
3 changes: 2 additions & 1 deletion conda-env/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ dependencies:
- numpy=1.22.4
- pandas=1.4.3
- xarray=2022.3.0
- xesmf=0.6.3
- python-dateutil=2.8.2
- types-python-dateutil=2.8.19
tomvothecoder marked this conversation as resolved.
Show resolved Hide resolved
# Quality Assurance
# ==================
# If versions are updated, also update 'rev' in `.pre-commit.config.yaml`
Expand Down
Loading