Skip to content

Commit 3a9b9a7

Browse files
authored
Version 0.8.4 - Unpin python. (#345)
* Fix 343 - add tests - upd changes * Fix changes * Add ci for 3.12, unpin * bump black to 310 * Bump RTD to py3.10 - upd changes
1 parent 6d65d2f commit 3a9b9a7

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
esmf-version: 8.4
3131
- python-version: "3.11"
3232
esmf-version: 8.6
33+
- python-version: "3.12"
34+
esmf-version: 8.6
3335
steps:
3436
- name: Cancel previous runs
3537
uses: styfle/[email protected]

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ What's new
44
0.8.4 (2024-02-26)
55
------------------
66
* Fix regression from :pull:`332` that made ``Regridder`` fail with rectilinear datasets and ``parallel=True``. (:issue:`343`, :pull:`344`).
7+
* Allow Python 3.12 (and higher) again. (:pull:`345).
78
89
0.8.3 (2024-02-20)
910
------------------

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = {text = "MIT"}
1313
authors = [
1414
{name = "Jiawei Zhuang", email = "[email protected]"},
1515
]
16-
requires-python = ">=3.8, <3.12"
16+
requires-python = ">=3.8"
1717
classifiers = [
1818
'Development Status :: 4 - Beta',
1919
'Intended Audience :: Science/Research',
@@ -25,6 +25,7 @@ classifiers = [
2525
'Programming Language :: Python :: 3.9',
2626
'Programming Language :: Python :: 3.10',
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
'Topic :: Scientific/Engineering',
2930
]
3031
dynamic = [
@@ -52,7 +53,7 @@ tag_regex = "^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$"
5253

5354
[tool.black]
5455
line-length = 100
55-
target-version = ['py38']
56+
target-version = ['py310']
5657
skip-string-normalization = true
5758

5859
[tool.isort]

readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.9"
6+
python: "3.10"
77

88
python:
99
install:

0 commit comments

Comments
 (0)