Skip to content

bump versions #313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Aug 9, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:
# https://pre-commit.com/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down Expand Up @@ -37,7 +37,7 @@ repos:
additional_dependencies: ["black==25.1.0"]
- id: blackdoc-autoupdate-black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.7
rev: v0.12.8
hooks:
- id: ruff
args: [--fix]
Expand Down
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pint>=0.21
xarray>=2022.06.0
pint>=0.24
xarray>=2023.07.0
pooch
netCDF4
cf-xarray>=0.6
cf-xarray
sphinx
sphinx_rtd_theme>=1.0
ipython
Expand Down
11 changes: 11 additions & 0 deletions docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ What's new
==========
0.6.0 (*unreleased*)
--------------------
- Bump dependency versions (:pull:`313`):

============ ============== ==============
dependency old minimum new minimum
============ ============== ==============
python 3.10 3.11
xarray 2022.06.0 2023.07.0
numpy 1.23 1.26
pint 0.21 0.24
============ ============== ==============

By `Justus Magin <https://github.com/keewis>`_.

0.5.1 (10 Aug 2025)
-------------------
Expand Down
16 changes: 7 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,24 @@ authors = [
{ name = "Tom Nicholas", email = "[email protected]" },
]
description = "Physical units interface to xarray using Pint"
license = { text = "Apache-2" }
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"numpy >= 1.23",
"xarray >= 2022.06.0",
"pint >= 0.21",
"xarray >= 2023.07.0",
"numpy >= 1.26",
"pint >= 0.24",
]
dynamic = ["version"]

Expand All @@ -38,7 +36,7 @@ include = [
]

[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 7.0"]
requires = ["setuptools >= 77", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand All @@ -48,7 +46,7 @@ fallback_version = "999"
junit_family = "xunit2"

[tool.ruff]
target-version = "py310"
target-version = "py311"
builtins = ["ellipsis"]
exclude = [
".git",
Expand Down
Loading