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
5 changes: 3 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ on:

jobs:
tests:
name: "Test Python ${{ matrix.version }} session= ${{ matrix.session }}"
name: "Test session=${{ matrix.session }} Python=${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
session: ["tests", "doctests-docs", "doctests-api"]
python-version: ["3.12", "3.13"]
defaults:
run:
shell: bash -l {0}
Expand All @@ -42,7 +43,7 @@ jobs:
with:
miniforge-version: latest
activate-environment: testenv
python-version: ${{ matrix.version }}
python-version: ${{ matrix.python-version }}
channels: conda-forge
show-channel-urls: true

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repos:
types_or: [asciidoc, python, markdown, rst]
additional_dependencies: [tomli]

- repo: https://github.com/psf/black
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
hooks:
- id: black
Expand All @@ -47,7 +47,7 @@ repos:
types: [file, python]

- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 7.0.0
hooks:
- id: isort
types: [file, python]
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [
{name = "Patrick Peglar", email = "[email protected]"},
]
description = "Abstract NetCDF data objects, providing fast data transfer between analysis packages."
requires-python = ">=3.7"
requires-python = ">=3.7, <3.14"
keywords = [
"cf-metadata",
"data-analysis",
Expand All @@ -39,6 +39,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dynamic = [
Expand Down
2 changes: 1 addition & 1 deletion requirements/readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
- pip
- pydata-sphinx-theme
- pytest
- python<3.13
- python<3.14
- sphinx
- sphinxcontrib-napoleon
- sphinx-copybutton
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_xarray_load_and_save_equivalence.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_save_direct_vs_viancdata(standard_testcase, tmp_path):

# Re-save from Xarray
temp_direct_savepath = tmp_path / "temp_save_xarray.nc"
xrds.to_netcdf(temp_direct_savepath)
xrds.to_netcdf(temp_direct_savepath, engine="netcdf4")
# Save same, via ncdata
temp_ncdata_savepath = tmp_path / "temp_save_xarray_via_ncdata.nc"
ncds_fromxr = from_xarray(xrds)
Expand Down
Loading