Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
from hatchling.builders.hooks.plugin.interface import BuildHookInterface


import argparse
import json
import os
import sys
import shutil

from jupyter_client.kernelspec import KernelSpecManager
from tempfile import TemporaryDirectory

# use 'python' executable for portable wheels
#
kernel_json = {
"argv": [sys.executable, "-m", "echo_kernel", "-f", "{connection_file}"],
"argv": ["python", "-m", "echo_kernel", "-f", "{connection_file}"],
"display_name": "Echo",
"language": "text",
}
Expand Down