Skip to content

Commit f02de03

Browse files
authored
Rename executable (#122)
* rename jupyter-kernel.raku to raku-jupyter-kernel * add latest raku to github workflows closes #121
1 parent 4d9417f commit f02de03

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- ubuntu-latest
1717
raku-version:
1818
- '2024.05'
19+
- '2025.12'
1920
- 'latest'
2021
runs-on: ${{ matrix.os }}
2122
steps:

.github/workflows/macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
os:
1616
- macos-latest
1717
raku-version:
18+
- '2025.12'
1819
- 'latest'
1920
runs-on: ${{ matrix.os }}
2021
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt-get update \
2222
&& rm -rf /var/lib/apt/lists/* && pip3 install jupyter notebook asciinema jupyterlab pyscaffold --no-cache-dir \
2323
&& zef -v install git://github.com/bduggan/raku-jupyter-kernel.git@1.0.2 --force-test \
2424
&& zef install SVG::Plot --force-test \
25-
&& jupyter-kernel.raku --generate-config \
25+
&& raku-jupyter-kernel --generate-config \
2626
&& ln -s /usr/share/perl6/site/bin/* /usr/local/bin
2727

2828
ENV TINI_VERSION v0.18.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ zef install 'Jupyter::Kernel:auth<zef:bduggan>'
5050
```
5151

5252
At the end of the above installation, you'll see the location
53-
of the `bin/` directory which has `jupyter-kernel.raku`. Make
53+
of the `bin/` directory which has `raku-jupyter-kernel`. Make
5454
sure that is in your `PATH`.
5555

5656
### Configuration
5757
#### Server Configuration
5858
To generate a configuration directory, and to install a kernel
5959
config file and icons into the default location:
6060
```
61-
jupyter-kernel.raku --generate-config
61+
raku-jupyter-kernel --generate-config
6262
```
6363
* Use `--location=XXX` to specify another location.
6464
* Use `--force` to override an existing configuration.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ multi MAIN(Bool :$generate-config!,
3232
"display_name": "Raku",
3333
"language": "raku",
3434
"argv": [
35-
"jupyter-kernel.raku",
35+
"raku-jupyter-kernel",
3636
"{connection_file}"
3737
]
3838
}

resources/kernel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"display_name": "Raku",
33
"language": "raku",
44
"argv": [
5-
"jupyter-kernel.raku",
5+
"raku-jupyter-kernel",
66
"{connection_file}"
77
]
88
}

t/20-end-to-end.rakutest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ my $spec-file = $*TMPDIR.child("kernel_test.json");
4848
$spec-file.spurt($s_connection);
4949
my $spec = from-json($s_connection);
5050

51-
# Launch a new kernel <- run jupyter-kernel.raku
51+
# Launch a new kernel <- run raku-jupyter-kernel
5252
sub spawn-kernel {
5353
my $lib = $?FILE.IO.parent.sibling('lib').Str;
54-
my $script = $?FILE.IO.parent.sibling('bin').child('jupyter-kernel.raku').Str;
54+
my $script = $?FILE.IO.parent.sibling('bin').child('raku-jupyter-kernel').Str;
5555
return Proc::Async.new("raku", "-I$lib", $script, $spec-file).start;
5656
}
5757

0 commit comments

Comments
 (0)