Skip to content

Commit

Permalink
Merge pull request #418 from raybellwaves/fix-build
Browse files Browse the repository at this point in the history
fix build
  • Loading branch information
raybellwaves authored Mar 10, 2024
2 parents a7f8c66 + b91efca commit a974647
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
--------------------------------

Expand Down
5 changes: 3 additions & 2 deletions HOWTORELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]:xarray-contrib/xskillscore.git
$ cd xskillscore
$ git tag -a v0.0.xx -m "Version 0.0.xx"
$ git push origin main --tags

Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"}

Expand Down
2 changes: 1 addition & 1 deletion xskillscore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit a974647

Please sign in to comment.