From 51636665cc70e4215ffeb8bbe7ed79de04f66c1d Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Sun, 10 Mar 2024 18:30:57 -0400 Subject: [PATCH 1/2] fix build --- CHANGELOG.rst | 8 ++++++++ pyproject.toml | 7 +++++-- xskillscore/__init__.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 331abac2..d7182379 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ Changelog History ================= +xskillscore v0.0.26 (2024-03-10) +-------------------------------- + +Internal Changes +~~~~~~~~~~~~~~~~ +- Fix build `Ray Bell`_. + + xskillscore v0.0.25 (2024-03-10) -------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 7dbb339b..2ae2e11e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [build-system] -requires = ["setuptools"] +requires = ["setuptools", "setuptools-scm"] build-backend = "setuptools.build_meta" [project] name = "xskillscore" -version = "0.0.25" +version = "0.0.26" dependencies = [ "dask[array]", "numpy", @@ -74,6 +74,9 @@ documentation = "https://xskillscore.readthedocs.io/en/stable/" [tool.setuptools] packages = ["xskillscore"] +[tool.setuptools_scm] +fallback_version = "9999" + [tool.setuptools.dynamic] readme = {file = ["README.rst"], content-type = "text/markdown"} diff --git a/xskillscore/__init__.py b/xskillscore/__init__.py index ba6c14a1..1e64730c 100644 --- a/xskillscore/__init__.py +++ b/xskillscore/__init__.py @@ -37,4 +37,4 @@ from xskillscore.core.stattests import multipletests from xskillscore.versioning.print_versions import show_versions -__version__ = "0.0.25" +__version__ = "0.0.26" From b91efca9afda8c7debf663723b5cfbaf6009e321 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Sun, 10 Mar 2024 18:32:48 -0400 Subject: [PATCH 2/2] udpate instructions --- HOWTORELEASE.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/HOWTORELEASE.rst b/HOWTORELEASE.rst index 73b431bf..c9e0cd08 100644 --- a/HOWTORELEASE.rst +++ b/HOWTORELEASE.rst @@ -16,9 +16,10 @@ Release Procedure #. After all tests pass and the PR has been approved, merge the PR into ``main`` -#. Tag a release and push to github:: +#. Clone the core repo and tag a release and push to github:: - $ git pull + $ git clone git@github.com:xarray-contrib/xskillscore.git + $ cd xskillscore $ git tag -a v0.0.xx -m "Version 0.0.xx" $ git push origin main --tags