Skip to content

Commit a974647

Browse files
authored
Merge pull request #418 from raybellwaves/fix-build
fix build
2 parents a7f8c66 + b91efca commit a974647

4 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog History
33
=================
44

5+
xskillscore v0.0.26 (2024-03-10)
6+
--------------------------------
7+
8+
Internal Changes
9+
~~~~~~~~~~~~~~~~
10+
- Fix build `Ray Bell`_.
11+
12+
513
xskillscore v0.0.25 (2024-03-10)
614
--------------------------------
715

HOWTORELEASE.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ Release Procedure
1616

1717
#. After all tests pass and the PR has been approved, merge the PR into ``main``
1818

19-
#. Tag a release and push to github::
19+
#. Clone the core repo and tag a release and push to github::
2020

21-
$ git pull
21+
$ git clone git@github.com:xarray-contrib/xskillscore.git
22+
$ cd xskillscore
2223
$ git tag -a v0.0.xx -m "Version 0.0.xx"
2324
$ git push origin main --tags
2425

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["setuptools"]
2+
requires = ["setuptools", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "xskillscore"
7-
version = "0.0.25"
7+
version = "0.0.26"
88
dependencies = [
99
"dask[array]",
1010
"numpy",
@@ -74,6 +74,9 @@ documentation = "https://xskillscore.readthedocs.io/en/stable/"
7474
[tool.setuptools]
7575
packages = ["xskillscore"]
7676

77+
[tool.setuptools_scm]
78+
fallback_version = "9999"
79+
7780
[tool.setuptools.dynamic]
7881
readme = {file = ["README.rst"], content-type = "text/markdown"}
7982

xskillscore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
from xskillscore.core.stattests import multipletests
3838
from xskillscore.versioning.print_versions import show_versions
3939

40-
__version__ = "0.0.25"
40+
__version__ = "0.0.26"

0 commit comments

Comments
 (0)