Skip to content

Commit

Permalink
Version 0.8.4 - Unpin python. (#345)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
aulemahal authored Feb 23, 2024
1 parent 6d65d2f commit 3a9b9a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
esmf-version: 8.4
- python-version: "3.11"
esmf-version: 8.6
- python-version: "3.12"
esmf-version: 8.6
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ What's new
0.8.4 (2024-02-26)
------------------
* Fix regression from :pull:`332` that made ``Regridder`` fail with rectilinear datasets and ``parallel=True``. (:issue:`343`, :pull:`344`).
* Allow Python 3.12 (and higher) again. (:pull:`345).
0.8.3 (2024-02-20)
------------------
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = {text = "MIT"}
authors = [
{name = "Jiawei Zhuang", email = "[email protected]"},
]
requires-python = ">=3.8, <3.12"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
Expand All @@ -25,6 +25,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Topic :: Scientific/Engineering',
]
dynamic = [
Expand Down Expand Up @@ -52,7 +53,7 @@ tag_regex = "^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$"

[tool.black]
line-length = 100
target-version = ['py38']
target-version = ['py310']
skip-string-normalization = true

[tool.isort]
Expand Down
2 changes: 1 addition & 1 deletion readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.10"

python:
install:
Expand Down

0 comments on commit 3a9b9a7

Please sign in to comment.