We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2cd13 commit 64a2160Copy full SHA for 64a2160
noxfile.py
@@ -39,5 +39,5 @@ def check_javascript(session: Session) -> None:
39
@group.session
40
def publish(session: Session) -> None:
41
session.install("twine", "build", "wheel")
42
- session.run("python", "-m", "build", "--wheel", "--outdir", "dist/")
+ session.run("python", "-m", "build", "--wheel", "--sdist", "--outdir", "dist/")
43
session.run("twine", "upload", "dist/*")
reactpy_jupyter/__init__.py
@@ -10,7 +10,7 @@
10
from .monkey_patch import execute_patch
11
from .widget_component import from_widget
12
13
-__version__ = "0.9.2" # DO NOT MODIFY
+__version__ = "0.9.3" # DO NOT MODIFY
14
15
__all__ = (
16
"from_widget",
setup.py
@@ -162,14 +162,9 @@ def build_javascript_first(cmd: Command):
162
163
164
def build_with_pth_file(cmd: Command):
165
- build_lib = getattr(cmd, "build_lib", None) or getattr(cmd, "dist_dir", None)
166
- if build_lib is None:
167
- raise ValueError("Cannot find build_lib or dist_dir")
168
-
169
pth_filename = f"{NAME}.pth"
170
source_pth_file = ROOT_DIR / pth_filename
171
- target_pth_file = Path(build_lib, pth_filename)
172
- cmd.copy_file(str(source_pth_file), str(target_pth_file))
+ cmd.copy_file(str(source_pth_file), pth_filename)
173
174
175
def add_to_cmd(cls: Command, functions: list[Callable[[Command], None]]) -> Command:
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments