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