Skip to content

Commit

Permalink
fix build order
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed May 19, 2023
1 parent 609edfc commit 95fe007
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -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/*")
2 changes: 1 addition & 1 deletion reactpy_jupyter/__init__.py
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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

Expand Down

0 comments on commit 95fe007

Please sign in to comment.