Skip to content

Commit 95fe007

Browse files
committed
fix build order
1 parent 609edfc commit 95fe007

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def check_javascript(session: Session) -> None:
4040
def publish(session: Session) -> None:
4141
session.install("twine", "build", "wheel")
4242
session.run("python", "-m", "build", "--wheel", "--outdir", "dist/")
43-
session.run("twine", "upload", "dist/*")
43+
# session.run("twine", "upload", "dist/*")

reactpy_jupyter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .monkey_patch import execute_patch
1111
from .widget_component import from_widget
1212

13-
__version__ = "0.9.0" # DO NOT MODIFY
13+
__version__ = "0.9.1" # DO NOT MODIFY
1414

1515
__all__ = (
1616
"from_widget",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ def build_javascript_first(cmd: Command):
164164
def add_to_cmd(cls: Command, functions: list[Callable[[Command], None]]) -> Command:
165165
class Command(cls):
166166
def run(self):
167-
super().run()
168167
for f in functions:
169168
f(self)
169+
super().run()
170170

171171
return Command
172172

0 commit comments

Comments
 (0)