Skip to content

Commit

Permalink
Merge pull request #1723 from rstudio/require-ipykernel-in-positron
Browse files Browse the repository at this point in the history
Require `ipykernel` in Positron
  • Loading branch information
t-kalinowski authored Jan 30, 2025
2 parents ec4bcbc + 4abede1 commit d60ee07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/py_require.R
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ py_reqs_get <- function(x = NULL) {
),
class = "python_requirements"
)
pkg_prime <- "numpy"
pkg_prime <- c("numpy", if (is_positron()) "ipykernel")
pr$packages <- pkg_prime
pr$history <- list(list(
requested_from = "reticulate",
Expand Down

0 comments on commit d60ee07

Please sign in to comment.