You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a("https://CRAN.R-project.org/web/checks/check_results_%s.html", pkg(), body = img("https://www.r-pkg.org/badges/version/%s", pkg(), alt="CRAN check status"))
115
123
} else if (bioc()) {
124
+
biocSince <- function() {
125
+
a("https://bioconductor.org/packages/%s/", pkg(), body = img("https://bioconductor.org/shields/years-in-bioc/%s.svg", pkg(), alt="Bioconductor since badge"))
This will install the package from source. <% if (file.exists("src")) { %><%-%>
234
249
Because of this and because this package also compiles native code, Windows users need to have [Rtools](https://cran.r-project.org/bin/windows/Rtools/) installed and macOS users need to have [Xcode](https://developer.apple.com/xcode/) installed.
235
250
<% } # if (file.exists("src")) %>
236
-
<% } # if (file.exists("INSTALL.md")) %>
251
+
<% } # if (... "INSTALL.md" ...) %>
237
252
238
253
239
254
<!-- pkgdown-drop-below -->
240
255
241
-
<% if (file.exists("CONTRIBUTING.md") &&
256
+
<% if (!is.na(file <- find_file("CONTRIBUTING.md")) &&
Copy file name to clipboardExpand all lines: vignettes/future.tests-01-intro.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ The **[future]** package defines the Future API which consists of a small number
13
13
14
14
> Write once, run anywhere
15
15
16
-
In order for such code to work regardless of which future backend the end-user choose, it is critical that the backend fully complies with the [Future API Backend Specification]. A future backend with A 100% compliance rate guarantees that the code will work equally well there as in sequential mode.
16
+
In order for such code to work regardless of which future backend the end-user choose, it is critical that the backend fully complies with the [Future API Backend Specification]. A future backend with a 100% compliance rate guarantees that the code will work equally well there as in sequential mode.
17
17
18
18
This R package - **[future.tests]** - provides a test suite for validation that a future backend complies with the Future API.
Copy file name to clipboardExpand all lines: vignettes/future.tests-05-ci-github_actions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ jobs:
118
118
path: check
119
119
```
120
120
121
-
For real-world examples, see the GitHub repositories of [**future**](https://github.com/HenrikBengtsson/future), [**future.batchtools**](https://github.com/HenrikBengtsson/future.batchtools), and [**future.callr**](https://github.com/HenrikBengtsson/future.callr).
121
+
For real-world examples, see the GitHub repositories of [**future**](https://github.com/futureverse/future), [**future.batchtools**](https://github.com/futureverse/future.batchtools), and [**future.callr**](https://github.com/futureverse/future.callr).
0 commit comments