diff --git a/404.html b/404.html index 79be1e4b7..248212f56 100644 --- a/404.html +++ b/404.html @@ -32,7 +32,7 @@
@@ -124,7 +124,7 @@vignettes/arrays.Rmd
+ Source: vignettes/arrays.Rmd
arrays.Rmd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/calling_python.html b/articles/calling_python.html index a6e3a4ac7..2d9328f39 100644 --- a/articles/calling_python.html +++ b/articles/calling_python.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/calling_python.Rmd
+ Source: vignettes/calling_python.Rmd
calling_python.Rmd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/index.html b/articles/index.html index 1bbe20efe..e8741d0cf 100644 --- a/articles/index.html +++ b/articles/index.html @@ -17,7 +17,7 @@ @@ -112,7 +112,7 @@vignettes/package.Rmd
+ Source: vignettes/package.Rmd
package.Rmd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/python_dependencies.html b/articles/python_dependencies.html index 5d8fab4f4..326863651 100644 --- a/articles/python_dependencies.html +++ b/articles/python_dependencies.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/python_dependencies.Rmd
+ Source: vignettes/python_dependencies.Rmd
python_dependencies.Rmd
vignettes/python_packages.Rmd
+ Source: vignettes/python_packages.Rmd
python_packages.Rmd
Any Python package you install from PyPI or Conda can be used from R with reticulate.
@@ -352,7 +352,7 @@Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/python_primer.html b/articles/python_primer.html index 406800d76..320f3f3c0 100644 --- a/articles/python_primer.html +++ b/articles/python_primer.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/python_primer.Rmd
+ Source: vignettes/python_primer.Rmd
python_primer.Rmd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/r_markdown.html b/articles/r_markdown.html index fd99d9fb4..58bf82f13 100644 --- a/articles/r_markdown.html +++ b/articles/r_markdown.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/r_markdown.Rmd
+ Source: vignettes/r_markdown.Rmd
r_markdown.Rmd
See the article on Python Version Configuration for additional details on configuring Python versions (including the use of conda or virtualenv environments).
@@ -151,7 +151,7 @@RStudio v1.2 or greater for reticulate IDE support.
@@ -162,7 +162,7 @@See the Calling Python from R article for additional details on how to interact with Python types from within R
@@ -172,17 +172,17 @@You can analogously access R objects within Python chunks via the
r
object. For example:
If you are using a version of knitr prior to 1.18 then add this code to your setup chunk to enable the reticulate Python engine:
- +If you do not wish to use the reticulate Python engine then set the
python.reticulate
chunk option to FALSE
:
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/rstudio_ide.html b/articles/rstudio_ide.html index d13e7fb1f..fb1dfc03f 100644 --- a/articles/rstudio_ide.html +++ b/articles/rstudio_ide.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/rstudio_ide.Rmd
+ Source: vignettes/rstudio_ide.Rmd
rstudio_ide.Rmd
R Notebooks can also display matplotlib plots inline when they are printed from Python chunks:
- +Type exit
from the Python REPL to exit back into R
(RStudio will also automatically switch back to R mode whenever you
execute code from an R script).
source_python()
function:
-
+
RStudio now provides code completion for Python scripts:
- +Additionally, pressing the F1 button over a Python symbol will display the help topic for that symbol:
- +Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/articles/versions.html b/articles/versions.html index 16b6f6e12..51188e542 100644 --- a/articles/versions.html +++ b/articles/versions.html @@ -32,7 +32,7 @@ @@ -104,7 +104,7 @@vignettes/versions.Rmd
+ Source: vignettes/versions.Rmd
versions.Rmd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/authors.html b/authors.html index f5ec45816..fdba0e0d4 100644 --- a/authors.html +++ b/authors.html @@ -17,7 +17,7 @@ @@ -126,21 +126,21 @@Ushey K, Allaire J, Tang Y (2024). reticulate: Interface to 'Python'. -R package version 1.39.0, +R package version 1.40.0, https://github.com/rstudio/reticulate, https://rstudio.github.io/reticulate/.
@Manual{, title = {reticulate: Interface to 'Python'}, author = {Kevin Ushey and JJ Allaire and Yuan Tang}, year = {2024}, - note = {R package version 1.39.0, + note = {R package version 1.40.0, https://github.com/rstudio/reticulate}, url = {https://rstudio.github.io/reticulate/}, }@@ -156,7 +156,7 @@
The S3 classes for some (rarely encountered) Python objects have changed. Only Python objects with non-standard __module__
values are affected. If a Python object’s parent class’s __module__
attribute does not resolve to a string, reticulate:
__name__
. (See #1686 for more context)Added support for Python 3.13. Note that Python 3.13 removed support for classmethod
descriptors, which may affect the S3 class of some Python objects that use metaclass properties to resolve a class’s __module__
or __name__
attribute. (#1686, #1698)
py_is_null_xptr()
and [[
now load delayed modules (#1688).
Fixed error when attempting to use a python venv created with uv
(#1678)
Resolved an issue where py_discover_config()
attempted to detect Windows App Store Python installations. These are now excluded from discovery by both py_discover_config()
and virtualenv_starter()
(#1656, #1673).
Fixed an error when converting an empty NumPy char array to R (#1662).
Fixed an error when using reticulate with radian (#1668, #1670).
Fixed a segfault encountered when running the Python session finalizer (#1663, #1664).
Resolved a segfault in RStudio when rapidly switching between R and Python chunks in a Quarto document (#1665).
Improved behavior when the conda binary used to create an environment cannot be resolved (contributed by @tl-hbk, #1654, #1659).
Added Positron support for the Variables Pane and repl_python()
(#1692, #1641, #1648, #1658, #1681, #1687).
R/python.R
+ Source: R/python.R
as.character.python.builtin.bytes.Rd
R/python.R
+ Source: R/python.R
as.character.python.builtin.str.Rd
R/python-packages.R
+ Source: R/python-packages.R
configure_environment.Rd
Site built with pkgdown 2.1.0.
+Site built with pkgdown 2.1.1.
diff --git a/reference/install_miniconda.html b/reference/install_miniconda.html index c093d26d2..77a419d56 100644 --- a/reference/install_miniconda.html +++ b/reference/install_miniconda.html @@ -18,7 +18,7 @@ @@ -79,7 +79,7 @@R/RcppExports.R
, R/python.R
+ Source: R/RcppExports.R
, R/python.R
iterate.Rd
nameOfClass()
for Python objectsR/python.R
+ Source: R/python.R
nameOfClass.python.builtin.type.Rd
R/config.R
+ Source: R/config.R
py_available.Rd
R/config.R
+ Source: R/config.R
py_config_error_message.Rd
R/RcppExports.R
+ Source: R/RcppExports.R
py_del_attr.Rd
R/config.R
+ Source: R/config.R
py_discover_config.Rd
R/py_func.R
+ Source: R/py_func.R
py_func.Rd
R/wrapper.R
+ Source: R/wrapper.R
py_function_custom_scaffold.Rd
R/wrapper.R
+ Source: R/wrapper.R
py_function_wrapper.Rd
R/RcppExports.R
+ Source: R/RcppExports.R
py_get_attr.Rd
R/RcppExports.R
, R/python-item.R
+ Source: R/RcppExports.R
, R/python-item.R
py_get_item.Rd
R/RcppExports.R
+ Source: R/RcppExports.R
py_has_attr.Rd
R/RcppExports.R
+ Source: R/RcppExports.R
py_is_null_xptr.Rd
R/generator.R
+ Source: R/generator.R
py_iterator.Rd
R/python.R
+ Source: R/python.R
py_last_error.Rd
R/python.R
+ Source: R/python.R
py_list_attributes.Rd
R/thread.R
+ Source: R/thread.R
py_main_thread_func.Rd
R/config.R
+ Source: R/config.R
py_module_available.Rd
R/RcppExports.R
+ Source: R/RcppExports.R
py_set_attr.Rd
R/RcppExports.R
, R/python.R
+ Source: R/RcppExports.R
, R/python.R
py_str.Rd
R/python.R
+ Source: R/python.R
py_suppress_warnings.Rd
R/config.R
+ Source: R/config.R
py_versions_windows.Rd
R/conversion.R
+ Source: R/conversion.R
r-py-conversion.Rd
R/python.R
+ Source: R/python.R
register_class_filter.Rd
R/help.R
+ Source: R/help.R
register_module_help_handler.Rd
R/python.R
+ Source: R/python.R
register_suppress_warnings_handler.Rd
R/virtualenv.R
+ Source: R/virtualenv.R
virtualenv-tools.Rd
with
statements.R/python.R
+ Source: R/python.R
with-as-operator.Rd
R/python.R
+ Source: R/python.R
with.python.builtin.object.Rd