Skip to content

Commit 08b6083

Browse files
committed
AP-25050: update to 5.8
1 parent fc66699 commit 08b6083

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You can find general instructions on how to work with our code or develop python
6161
Note that you have to run the `pixi install` command again after manually editing the `pixi.toml` file.
6262
6. **Install** the extension in debug mode in your KNIME Analytics Platformby running the following command:
6363
```
64-
pixi run register_debug_in_knime
64+
pixi run register-debug-in-knime
6565
```
6666
Previously this step required modifying the `config.yml`and `knime.ini` files manually. This improvement will allow you to select your KNIME Analytics Platform installation and append the `-Dknime.python.extension.debug_knime_yaml_list=<path/to/your/knime.yml>` argument automatically to the according `knime.ini` file. You can now test your extension in the KNIME Analytics Platform (e.g. demo workflow).
6767
7. **Bundle** your extension:

pixi.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[workspace]
2-
channels = ["knime/label/nightly", "knime", "conda-forge"]
2+
channels = ["knime", "conda-forge"]
33
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
44

55
[tasks]
66
test = { cmd = "pytest" }
77

88
[dependencies]
99
python = "3.11.*"
10-
knime-extension = "5.7.*"
11-
knime-python-versions = "5.7.*"
12-
knime-python-scripting = "5.7.*"
10+
knime-extension = "5.*"
11+
knime-python-versions = "5.*"
12+
knime-python-scripting = "5.*"
1313
rdkit = "*"
1414
pytest = "*"
1515
ipykernel = "*"
1616

1717
[feature.build.dependencies]
1818
python = "3.9.*"
19-
knime-extension-bundling = "5.7.*"
19+
knime-extension-bundling = "5.*"
2020

2121
[feature.debug.dependencies]
2222
debugpy = "*"
2323

2424
[feature.build.tasks]
2525
build = { args = [{ "arg" = "dest", "default" = "./local-update-site" }], cmd = "build-python-extension . {{ dest }}"}
26-
register_debug_in_knime = { description = "Register the current KNIME extension with a KNIME installation. Usage: 'pixi run register-debug-in-knime' (default locations) or 'pixi run register-debug-in-knime C:/' (search entire C: drive if no executables found). Note windows paths should not end with \\ (backslash)", args = [
26+
register-debug-in-knime = { description = "Register the current KNIME extension with a KNIME installation. Usage: 'pixi run register-debug-in-knime' (default locations) or 'pixi run register-debug-in-knime C:/' (search entire C: drive if no executables found). Note windows paths should not end with \\ (backslash)", args = [
2727
{ "arg" = "search_path", "default" = "" }], cmd = "register-debug-in-knime{% if search_path %} --search-path \"{{ search_path }}\"{% endif %}" }
2828

2929

0 commit comments

Comments
 (0)