Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <adam2392@gmail.com>
  • Loading branch information
adam2392 committed Jul 6, 2023
1 parent 71e02f6 commit 049918a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
6 changes: 0 additions & 6 deletions .spin/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,3 @@ def build(ctx, meson_args, jobs=None, clean=False, forcesubmodule=False, verbose

# run build as normal
ctx.invoke(meson.build, meson_args=meson_args, jobs=jobs, clean=clean, verbose=verbose)


@click.command()
def sdist():
"""📦 Build a source distribution in `dist/`"""
util.run(["python", "-m", "build", ".", "--sdist"])
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(
# Note that the git commit hash cannot be added dynamically here
# That only happens when importing from a git repository.
# See `sktree/__init__.py`
version: '0.1.4',
version: '0.2.0dev0',
license: 'BSD-3',
meson_version: '>= 0.64.0',
default_options: [
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "scikit-tree"
# 0.0.0 is standard placeholder for poetry-dynamic-versioning
# any changes to this should not be checked in
#
version = "0.1.4"
version = "0.2.0dev0"
description = "Modern decision trees in Python"
maintainers = [
{name="Neurodata", email="adam.li@columbia.edu"}
Expand Down Expand Up @@ -258,7 +258,6 @@ Build = [
# "spin.cmds.meson.build",
".spin/cmds.py:build",
".spin/cmds.py:setup_submodule",
".spin/cmds.py:sdist",
"spin.cmds.meson.test",
]
Environments = [
Expand Down
2 changes: 1 addition & 1 deletion sktree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import sys

__version__ = "0.1.4"
__version__ = "0.2.0dev0"
logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 049918a

Please sign in to comment.