From d7e63c8c0218db4f8cd229170fb26b2e239f1fa9 Mon Sep 17 00:00:00 2001 From: timothyas Date: Tue, 18 Jun 2024 15:28:41 -0600 Subject: [PATCH 1/2] at last this is the fix to pip install properly --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 824e4c3..f997cfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,5 +42,5 @@ documentation="https://ufs2arco.readthedocs.io/en/latest/" requires = ["setuptools>=64.0.0", "setuptools-scm"] build-backend = "setuptools.build_meta" -[tool.setuptools.packages.find] -where = ["ufs2arco"] +[tool.setuptools] +packages = ["ufs2arco"] From 0dbb20533bc413afea1a46f55759d939b0fd15f0 Mon Sep 17 00:00:00 2001 From: timothyas Date: Tue, 18 Jun 2024 15:29:19 -0600 Subject: [PATCH 2/2] bump minor version --- pyproject.toml | 2 +- ufs2arco/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f997cfe..2d657f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ufs2arco" -version = "0.1.0" +version = "0.1.1" description = "Tools for converting Unified Forecast System (UFS) output to Analysis Ready, Cloud Optimized (ARCO) format" authors = [ {name="Timothy Smith", email="tim.smith@noaa.gov"}, diff --git a/ufs2arco/__init__.py b/ufs2arco/__init__.py index 03e4e2c..60d8e22 100644 --- a/ufs2arco/__init__.py +++ b/ufs2arco/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" from .cice6dataset import CICE6Dataset from .fv3dataset import FV3Dataset