File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 11# reticulate (development version)
22
3- - New ` py_require() ` function for declaring Python requirements for the current R session.
3+ - New ` py_require() ` function for declaring Python requirements for
4+ the current R session. For details, see updated vignettes and help:
45
5- - New ` uv_run_tool() ` function for running command line tools distributed via Python packages.
6+ - Installing Python Packages: https://rstudio.github.io/reticulate/dev/articles/python_packages.html
7+ - Using reticulate in an R Package: https://rstudio.github.io/reticulate/dev/articles/package.html
8+ - ` py_require() ` help: https://rstudio.github.io/reticulate/dev/reference/py_require.html
69
7- - Raw R arrays now convert to NumPy arrays with dtype "V1" ("void8") (#1734 ).
8- Use ` r_to_py(as.array(x)) ` to efficiently convert raw vectors to numpy arrays.
10+ - New ` uv_run_tool() ` function for running command line tools distributed via Python packages.
911
10- - NumPy arrays with dtype "V1" ("void8") now convert to R raw arrays (#1734 ).
11- Use ` py_to_r(array$view("V1")) ` to efficiently convert numpy arrays to raw vectors.
12+ - Raw R arrays and NumPy arrays with dtype "V1" ("void8") now convert between each other.
13+ Use ` r_to_py(as.array(x)) ` to efficiently convert raw vectors to NumPy arrays, and
14+ ` py_to_r(array$view("V1")) ` to efficiently convert NumPy arrays to raw vectors. (#1734 )
1215
1316- Fixed an issue with using Python 3.12 on Linux (#1712 , #1714 ).
1417
You can’t perform that action at this time.
0 commit comments