Skip to content

Commit

Permalink
updated version number, added python 3.10 to 3.13 to ci" (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
ifenty authored May 10, 2024
1 parent 10abc43 commit 4a8043c
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 1 deletion.
31 changes: 31 additions & 0 deletions ci/environment-py3.10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# following xgcm ci environment specs
name: test_env_ecco
channels:
- conda-forge
dependencies:
- aiohttp
- codecov
- cartopy>=0.18.0
- cmocean
- dask
- docrep
- fsspec
- future
- geos
- matplotlib
- netcdf4
- numba
- numpy
- pip
- pre-commit
- proj
- pytest
- python=3.10
- pytest-cov
- pytest-xdist
- pyresample
- scipy
- xarray
- xgcm>=0.5.0
- xmitgcm>=0.5.1
- typing_extensions
31 changes: 31 additions & 0 deletions ci/environment-py3.11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# following xgcm ci environment specs
name: test_env_ecco
channels:
- conda-forge
dependencies:
- aiohttp
- codecov
- cartopy>=0.18.0
- cmocean
- dask
- docrep
- fsspec
- future
- geos
- matplotlib
- netcdf4
- numba
- numpy
- pip
- pre-commit
- proj
- pytest
- python=3.11
- pytest-cov
- pytest-xdist
- pyresample
- scipy
- xarray
- xgcm>=0.5.0
- xmitgcm>=0.5.1
- typing_extensions
31 changes: 31 additions & 0 deletions ci/environment-py3.12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# following xgcm ci environment specs
name: test_env_ecco
channels:
- conda-forge
dependencies:
- aiohttp
- codecov
- cartopy>=0.18.0
- cmocean
- dask
- docrep
- fsspec
- future
- geos
- matplotlib
- netcdf4
- numba
- numpy
- pip
- pre-commit
- proj
- pytest
- python=3.12
- pytest-cov
- pytest-xdist
- pyresample
- scipy
- xarray
- xgcm>=0.5.0
- xmitgcm>=0.5.1
- typing_extensions
31 changes: 31 additions & 0 deletions ci/environment-py3.13.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# following xgcm ci environment specs
name: test_env_ecco
channels:
- conda-forge
dependencies:
- aiohttp
- codecov
- cartopy>=0.18.0
- cmocean
- dask
- docrep
- fsspec
- future
- geos
- matplotlib
- netcdf4
- numba
- numpy
- pip
- pre-commit
- proj
- pytest
- python=3.13
- pytest-cov
- pytest-xdist
- pyresample
- scipy
- xarray
- xgcm>=0.5.0
- xmitgcm>=0.5.1
- typing_extensions
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def README():
setup(
name = 'ecco_v4_py',
packages = ['ecco_v4_py'], # this must be the same as the name above
version = '1.5.5',
version = '1.6.0',
description = 'Estimating the Circulation and Climate of the Ocean (ECCO) Version 4 Python Package',
author = 'Ian Fenty, Ou Wang, Tim Smith, and others',
author_email = '[email protected], [email protected]',
Expand Down Expand Up @@ -40,6 +40,12 @@ def README():
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Physics'
],
long_description=README(),
Expand Down

0 comments on commit 4a8043c

Please sign in to comment.