|
1 | 1 | ## Test environments
|
2 |
| -* local OS X install, R 3.6.0 |
3 |
| -* ubuntu 14.04 (on travis-ci), R 3.6.0 |
4 |
| -* win-builder (devel and release) |
| 2 | +* local R installation, R 4.0.5 |
| 3 | +* ubuntu 16.04 (on travis-ci), R 4.0.5 |
| 4 | +* win-builder (devel) |
5 | 5 |
|
6 | 6 | ## R CMD check results
|
7 | 7 |
|
8 |
| -0 errors | 0 warnings | 1 note |
| 8 | +0 errors | 0 warnings | 0 notes |
9 | 9 |
|
10 |
| -* This is a resubmission. |
| 10 | +## Comments |
11 | 11 |
|
12 |
| -Feedbacks from previous submission: |
13 |
| - |
14 |
| -``` |
15 |
| -please replace \dontrun{} by \donttest{} or if(interactive()){} |
16 |
| -(for interactive examples) in your Rd-files if this is feasible. |
17 |
| -``` |
18 |
| - |
19 |
| --> We replaced them |
20 |
| - |
21 |
| -``` |
22 |
| -Please ensure that your functions do not write by default or in your |
23 |
| -examples/vignettes/tests in the user's home filespace.(...). |
24 |
| -Please only write/save files if the user has specified |
25 |
| -a directory. |
26 |
| -``` |
27 |
| - |
28 |
| --> One of the goal of {golem} is to write files to disk, in the spirit of {usethis}. But nothing is written without the user knowing it: |
29 |
| - |
30 |
| -+ when first using a project created by golem, the user has to set a series of options, one being the current "golem working directory". |
31 |
| -+ All writing functions then have a parameter to specify the path, which default to a path returned by `get_golem_wd`. |
32 |
| -+ The `set_golem_wd` allows to change globally this path, and the user is informed of that through a message to the console whenever this path is set. |
33 |
| - |
34 |
| -``` |
35 |
| -Please ensure that you do not install packages in your functions without |
36 |
| -the user's knowledge or without the possibility to change the target |
37 |
| -library. |
38 |
| -``` |
39 |
| - |
40 |
| --> There is no function in {golem} installing packages: the only "install.packages"to be found is the one which is written inside the Dockerfile generated by `add_dockerfile`, so nothing is installed in the user library. |
41 |
| - |
42 |
| -``` |
43 |
| -You are using installed.packages(): do not use |
44 |
| -it to find out if a named package is installed (...) |
45 |
| -nor to find out if a package is usable |
46 |
| -``` |
47 |
| - |
48 |
| --> We used the install.packages function to check which packages are of priority 'basic'. We switched to an hardcoded vector containing these packages. |
| 12 | +* Maintainer has changed. |
0 commit comments