Skip to content

Commit 3729d47

Browse files
committed
remove 3.10 and add 3.13
1 parent 1d20619 commit 3729d47

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ "ubuntu-latest", "macos-latest", "macos-14", "windows-latest"]
22-
python-version: [ "3.9", "3.10", "3.11", "3.12"]
22+
python-version: [ "3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- name: Cancel previous runs
2525
uses: styfle/[email protected]

.github/workflows/upstream-dev-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: [ "3.11" ]
21+
python-version: [ "3.12" ]
2222

2323
steps:
2424
- name: Checkout

pyproject.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,22 @@
22
classifiers=[
33
"Operating System :: OS Independent",
44
"Intended Audience :: Science/Research",
5+
"Topic :: Scientific/Engineering",
56
"Programming Language :: Python",
67
"Programming Language :: Python :: 3",
7-
"Programming Language :: Python :: 3.9",
88
"Programming Language :: Python :: 3.10",
99
"Programming Language :: Python :: 3.11",
1010
"Programming Language :: Python :: 3.12",
11-
'Operating System :: Microsoft :: Windows',
12-
'Operating System :: Unix',
13-
'Operating System :: MacOS',
14-
"Topic :: Scientific/Engineering",
11+
"Programming Language :: Python :: 3.13",
1512
]
1613

1714
dynamic = ["version"]
18-
keywords = ["unstructured grids", "xarray", "ugrid", "mpas", "exodus", "scrip", ]
19-
description = "Xarray-styled package for reading and directly operating on unstructured grid datasets following UGRID conventions"
15+
keywords = ["unstructured grids", "xarray", "ugrid", "mpas", "exodus", "scrip", "fesom", "icon"]
16+
description = "Xarray extension for unstructured climate and global weather data analysis and visualization."
2017
license = {file = "LICENSE"}
2118
name = "uxarray"
2219
readme = "README.md"
23-
requires-python = ">=3.9"
20+
requires-python = ">=3.10"
2421

2522
# minimal dependencies start
2623
dependencies = [
@@ -50,7 +47,7 @@ dependencies = [
5047

5148
[project.optional-dependencies]
5249
complete = ["uxarray[math, dev]"]
53-
math = ['gmpy2', 'pyfma']
50+
math = ['gmpy2']
5451
dev = ['pathlib', 'pre_commit', 'pytest', 'pytest-cov', 'ruff', 'asv']
5552

5653
[project.urls]

0 commit comments

Comments
 (0)