Skip to content

Commit 0da8ea9

Browse files
committed
bug
1 parent 42cce0d commit 0da8ea9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

R/rix_helpers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ generate_py_conf <- function(py_conf, flag_py_conf) {
221221

222222
# I'm adding pip and ipykernel because Positron complains otherwise
223223
py_conf <- paste(
224-
c("", "pip", "ipykernel", sort(py_conf$py_conf)),
224+
c("", "pip", "ipykernel", sort(py_conf$py_pkgs)),
225225
collapse = "\n "
226226
)
227227

tests/testthat/_snaps/rix-python/python_default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ let
1717
pyconf = builtins.attrValues {
1818
inherit (pkgs.python312Packages)
1919
pip
20-
ipykernel;
20+
ipykernel
21+
plotnine
22+
polars;
2123
};
2224

2325
system_packages = builtins.attrValues {

0 commit comments

Comments
 (0)