Skip to content

Commit

Permalink
Update req Python version, project URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
mkstratos committed May 14, 2024
1 parent 5836a89 commit 23dfb50
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Model Mimic
[![Python package](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml)
[![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)
[![Docs](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml)
[![Pre-Commit](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml)

## Generate testing data for [EVV4ESM](https://github.com/LIVVkit/evv4esm)
This package mimics an Earth System Model run output data so that each type
of evv4esm test can be checked systematically
2 changes: 1 addition & 1 deletion modelmimic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 0, 1)
__version_info__ = (0, 0, 2)
__version__ = ".".join(str(_vi) for _vi in __version_info__)
logo = r"""
|-------------------------------------------------|
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "modelmimic"
requires-python = ">=3.10"
requires-python = ">=3.9"
authors = [{ name = "Michael Kelleher", email = "kelleherme@ornl.gov" }]
description = "Generate model-like data, _mimic_ the output of various CIME tests."
readme = "README.md"
Expand All @@ -15,15 +15,20 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["numpy", "xarray", "netCDF4", "pandas", "toml"]
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/LIVVkit/modelmimic/"
Documentation = "https://livvkit.github.io/modelmimic/"

[project.optional-dependencies]
dev = ["ruff", "isort", "black"]
dev = ["ruff", "isort", "black", "pytest"]

[tool.setuptools.dynamic]
version = { attr = "modelmimic.__version__" }
Expand Down

0 comments on commit 23dfb50

Please sign in to comment.