Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: acro
Title: A Tool for Semi-Automating the Statistical Disclosure Control of Research Outputs
Version: 0.1.5
Version: 0.1.6
Authors@R: c(
person("Jim", "Smith", role = c("cre","ctb"),
email = "James.Smith@uwe.ac.uk", comment = c(ORCID = "0000-0001-7908-1859")),
Expand All @@ -14,7 +14,7 @@ License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
SystemRequirements: Python (>= 3.9)
SystemRequirements: Python (>= 3.10)
Imports:
reticulate,
admiraldev,
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# acro 0.1.6

* Upgrade ACRO Python backend to v0.4.11, supporting Python 3.14.

# acro 0.1.5

* Upgrade ACRO Python backend to v0.4.9, addressing installation problems due to scipy dependency update.
Expand Down
6 changes: 3 additions & 3 deletions R/create_virtualenv.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
acro_venv <- "r-acro-0.4.9"
acro_package <- "acro==0.4.9"
python_version <- ">=3.9"
acro_venv <- "r-acro-0.4.11"
acro_package <- "acro==0.4.11"
python_version <- ">=3.10"


#' Install acro
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Additional programming languages such as this R package are supported by providi

### Installation

Prerequisite: you must have [Python](https://www.python.org) pre-installed.

Install the **acro** package from CRAN as follows:

``` r
Expand All @@ -44,7 +46,9 @@ Before using any function from the package, an acro object should be initialised

### Try Online with MyBinder

Try an example notebook in RStudio online on [MyBinder.org](https://mybinder.org/v2/gh/AI-SDC/ACRO-R/main?urlpath=rstudio). Select the `example-notebook.Rmd` in the bottom-right pane after loading.
Try an example notebook in [RStudio online](https://mybinder.org/v2/gh/AI-SDC/ACRO-R/main?urlpath=rstudio) on MyBinder.org.

Select the `example-notebook.Rmd` in the bottom-right pane after loading.

### Documentation

Expand Down