Skip to content

Commit 9cf8e74

Browse files
a bit of cleanup of the pyproject file and workflows.
1 parent 88d3623 commit 9cf8e74

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/conda_test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
12-
pyver: ["3.9", "3.10", "3.11", "3.12"]
12+
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313
fail-fast: false
1414
steps:
1515
- uses: actions/checkout@v2
@@ -19,6 +19,7 @@ jobs:
1919
# environment-file: environment.yml
2020
python-version: ${{ matrix.pyver }}
2121
auto-activate-base: false
22+
conda-remove-defaults: true
2223
- shell: bash -l {0}
2324
run: |
2425
conda config --add channels conda-forge
@@ -40,6 +41,7 @@ jobs:
4041
activate-environment: lint
4142
python-version: 3.9
4243
auto-activate-base: false
44+
conda-remove-defaults: true
4345
- shell: bash -l {0}
4446
run: |
4547
conda config --add channels conda-forge

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "Unified API for working with results from (Met/Ocean) models on various grid types"
99
readme = "README.rst"
1010
license = "CC0-1.0"
11-
requires-python = ">=3.10"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "Chris Barker", email = "chris.barker@noaa.gov"},
1414
{ name = "Jay Hennen", email = "jay.hennen@noaa.gov"},
@@ -33,7 +33,7 @@ include = [
3333
[tool.ruff]
3434
builtins = ["ellipsis"]
3535
# extend-exclude = ["xarray_subset_grid/_version.py"]
36-
target-version = "py310"
36+
target-version = "py39"
3737
# Use a longer line length.
3838
line-length = 120
3939

0 commit comments

Comments
 (0)