Skip to content

Commit

Permalink
Merge pull request #76 from nco/csz_py312
Browse files Browse the repository at this point in the history
Add Python 3.12 support
  • Loading branch information
czender authored Dec 20, 2023
2 parents e1561d9 + cb2e071 commit 5dce3c5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
tox-env: ["py38", "py39", "py310", "py311"]
tox-env: ["py38", "py39", "py310", "py311", "py312"]

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 10 additions & 0 deletions ci/requirements-3.12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
channels:
- conda-forge
dependencies:
- python=3.12
- python-dateutil
- h5py
- netCDF4
- numpy
- pytest
- scipy
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = nco
description = python bindings to NCO
version = 1.1.1
version = 1.1.2
long_description = file: README.md
long_description_content_type = text/markdown
author = Joe Hamman
Expand Down Expand Up @@ -43,6 +43,7 @@ envlist =
py39
py310
py311
py312

isolated_build = true

Expand All @@ -52,6 +53,7 @@ conda_env =
py39: ci/requirements-3.9.yml
py310: ci/requirements-3.10.yml
py311: ci/requirements-3.11.yml
py312: ci/requirements-3.12.yml
conda_deps =
nco
commands=
Expand Down

0 comments on commit 5dce3c5

Please sign in to comment.