Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Changed offline restart regridding to preserve source restart file precision
- Changed `mamba` to `conda` in `benchmarks/benchmark_slurm.sh`
- Separated plot and table options for clarity in `benchmarks/config/*yml` and `benchmarks/cloud/*.yml`
- Updated default GCPy Python environment to use Python 3.13 (instead of 3.12)

### Fixed
- Fixed grid area calculation scripts of `grid_area` in `gcpy/gcpy/cstools.py`
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
36 changes: 18 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
]

MAJOR = 1
MINOR = 6
MICRO = 2
MINOR = 7
MICRO = 0
EXTRA = '' # for alpha (aN), beta (bN), rc (rcN) versions

VERSION = f"{MAJOR}.{MINOR}.{MICRO}{EXTRA}"
Expand Down Expand Up @@ -91,32 +91,32 @@ def _write_version_file():
packages = find_packages(),
include_package_data=True,
install_requires=[
"cartopy==0.23.0",
"cf_xarray==0.9.1",
"cartopy==0.24.0",
"cf_xarray==0.10.0",
"dask==2025.3.0",
"esmf==8.6.1",
"esmpy==8.6.1",
"esmf==8.8.1",
"esmpy==8.8.1",
"gridspec==0.1.0",
"ipython==8.25.0",
"ipython==9.0.0",
"joblib==1.4.2",
"jupyter==1.0.0",
"matplotlib==3.8.4",
"netcdf4==1.6.5",
"jupyter==1.1.1",
"matplotlib==3.10.1",
"netcdf4==1.7.2",
"netcdf-fortran==4.6.1",
"numpy==1.26.4",
"pandas==2.2.2",
"numpy==2.1.3",
"pandas==2.2.3",
"pip==25.2",
"pylint==3.2.2",
"pyproj==3.6.1",
"python==3.12.0",
"pylint==3.3.4",
"pyproj==3.7.1",
"python==3.13",
"pypdf==6.4.0",
"requests==2.32.4",
"scipy==1.13.1",
"scipy==1.15.2",
"sparselt==0.1.3",
"tabulate==0.9.0",
"tk==8.6.13",
"xarray==2024.5.0",
"xesmf==0.8.5",
"xarray==2025.1.2",
"xesmf==0.8.8",
],
classifiers = CLASSIFIERS
)
Expand Down
Loading