Skip to content

Commit 23dfb50

Browse files
committed
Update req Python version, project URLs
1 parent 5836a89 commit 23dfb50

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Model Mimic
2+
[![Python package](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml)
3+
[![Upload Python Package](https://github.com/LIVVkit/modelmimic/actions/workflows/python-publish.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/python-publish.yml)
4+
[![Docs](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml)
5+
[![Pre-Commit](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml)
6+
27
## Generate testing data for [EVV4ESM](https://github.com/LIVVkit/evv4esm)
38
This package mimics an Earth System Model run output data so that each type
49
of evv4esm test can be checked systematically

modelmimic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version_info__ = (0, 0, 1)
1+
__version_info__ = (0, 0, 2)
22
__version__ = ".".join(str(_vi) for _vi in __version_info__)
33
logo = r"""
44
|-------------------------------------------------|

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "modelmimic"
7-
requires-python = ">=3.10"
7+
requires-python = ">=3.9"
88
authors = [{ name = "Michael Kelleher", email = "[email protected]" }]
99
description = "Generate model-like data, _mimic_ the output of various CIME tests."
1010
readme = "README.md"
@@ -15,15 +15,20 @@ classifiers = [
1515
"Natural Language :: English",
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.9",
1819
"Programming Language :: Python :: 3.10",
1920
"Programming Language :: Python :: 3.11",
2021
"Programming Language :: Python :: 3.12",
2122
]
2223
dependencies = ["numpy", "xarray", "netCDF4", "pandas", "toml"]
2324
dynamic = ["version"]
2425

26+
[project.urls]
27+
Homepage = "https://github.com/LIVVkit/modelmimic/"
28+
Documentation = "https://livvkit.github.io/modelmimic/"
29+
2530
[project.optional-dependencies]
26-
dev = ["ruff", "isort", "black"]
31+
dev = ["ruff", "isort", "black", "pytest"]
2732

2833
[tool.setuptools.dynamic]
2934
version = { attr = "modelmimic.__version__" }

0 commit comments

Comments
 (0)