From 95fe0070d151d8c106e30fa454db0e87e870937c Mon Sep 17 00:00:00 2001 From: rmorshea Date: Thu, 18 May 2023 19:53:18 -0600 Subject: [PATCH] fix build order --- noxfile.py | 2 +- reactpy_jupyter/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index ed095dd..220b86a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -40,4 +40,4 @@ def check_javascript(session: Session) -> None: def publish(session: Session) -> None: session.install("twine", "build", "wheel") session.run("python", "-m", "build", "--wheel", "--outdir", "dist/") - session.run("twine", "upload", "dist/*") + # session.run("twine", "upload", "dist/*") diff --git a/reactpy_jupyter/__init__.py b/reactpy_jupyter/__init__.py index 249c01b..f12b9be 100644 --- a/reactpy_jupyter/__init__.py +++ b/reactpy_jupyter/__init__.py @@ -10,7 +10,7 @@ from .monkey_patch import execute_patch from .widget_component import from_widget -__version__ = "0.9.0" # DO NOT MODIFY +__version__ = "0.9.1" # DO NOT MODIFY __all__ = ( "from_widget", diff --git a/setup.py b/setup.py index d7cafea..66dc744 100644 --- a/setup.py +++ b/setup.py @@ -164,9 +164,9 @@ def build_javascript_first(cmd: Command): def add_to_cmd(cls: Command, functions: list[Callable[[Command], None]]) -> Command: class Command(cls): def run(self): - super().run() for f in functions: f(self) + super().run() return Command