Skip to content

Commit d0d4c51

Browse files
committed
Polish NEWS
1 parent d72e47b commit d0d4c51

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

NEWS.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
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

0 commit comments

Comments
 (0)