Skip to content

Commit b6aa558

Browse files
Repo moved to 'futureverse' org
1 parent fa34d53 commit b6aa558

File tree

10 files changed

+39
-25
lines changed

10 files changed

+39
-25
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ labels: ''
66
assignees: ''
77

88
---
9-
(Please use <https://github.com/HenrikBengtsson/future/discussions> for Q&A)
9+
(Please use <https://github.com/futureverse/future/discussions> for Q&A)
1010

1111
**Describe the bug**
1212
A clear and concise description of what the bug is.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ labels: ''
66
assignees: ''
77

88
---
9-
(Please use <https://github.com/HenrikBengtsson/future/discussions> for Q&A)
9+
(Please use <https://github.com/futureverse/future/discussions> for Q&A)
1010

1111
**Wish or feature request**
1212
A clear and concise description of what the problem is. For example, I would like to be able to ...

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
# Contributing to the 'future.batchtools' package
33

4-
This Git repository uses the [Git Flow](https://nvie.com/posts/a-successful-git-branching-model/) branching model (the [`git flow`](https://github.com/petervanderdoes/gitflow-avh) extension is useful for this). The [`develop`](https://github.com/HenrikBengtsson/future.batchtools/tree/develop) branch contains the latest contributions and other code that will appear in the next release, and the [`master`](https://github.com/HenrikBengtsson/future.batchtools) branch contains the code of the latest release, which is exactly what is currently on [CRAN](https://cran.r-project.org/package=future.batchtools).
4+
This Git repository uses the [Git Flow](https://nvie.com/posts/a-successful-git-branching-model/) branching model (the [`git flow`](https://github.com/petervanderdoes/gitflow-avh) extension is useful for this). The [`develop`](https://github.com/futureverse/future.batchtools/tree/develop) branch contains the latest contributions and other code that will appear in the next release, and the [`master`](https://github.com/futureverse/future.batchtools) branch contains the code of the latest release, which is exactly what is currently on [CRAN](https://cran.r-project.org/package=future.batchtools).
55

6-
Contributing to this package is easy. Just send a [pull request](https://help.github.com/articles/using-pull-requests/). When you send your PR, make sure `develop` is the destination branch on the [future.batchtools repository](https://github.com/HenrikBengtsson/future.batchtools). Your PR should pass `R CMD check --as-cran`, which will also be checked by <a href="https://github.com/HenrikBengtsson/future.batchtools/actions?query=workflow%3AR-CMD-check">GitHub Actions</a> and when the PR is submitted.
6+
Contributing to this package is easy. Just send a [pull request](https://help.github.com/articles/using-pull-requests/). When you send your PR, make sure `develop` is the destination branch on the [future.batchtools repository](https://github.com/futureverse/future.batchtools). Your PR should pass `R CMD check --as-cran`, which will also be checked by <a href="https://github.com/futureverse/future.batchtools/actions?query=workflow%3AR-CMD-check">GitHub Actions</a> and when the PR is submitted.
77

88
We abide to the [Code of Conduct](https://www.contributor-covenant.org/version/2/0/code_of_conduct/) of Contributor Covenant.

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future.batchtools
2-
Version: 0.12.1-9000
2+
Version: 0.12.1-9002
33
Depends:
44
R (>= 3.2.0),
55
parallelly,
@@ -20,7 +20,7 @@ Authors@R: c(person("Henrik", "Bengtsson",
2020
role = c("aut", "cre", "cph"),
2121
email = "[email protected]",
2222
comment = c(ORCID = "0000-0002-7579-5165")))
23-
Description: Implementation of the Future API on top of the 'batchtools' package.
23+
Description: Implementation of the Future API <doi:10.32614/RJ-2021-048> on top of the 'batchtools' package.
2424
This allows you to process futures, as defined by the 'future' package,
2525
in parallel out of the box, not only on your local machine or ad-hoc
2626
cluster of machines, but also via high-performance compute ('HPC') job
@@ -30,5 +30,5 @@ License: LGPL (>= 2.1)
3030
LazyLoad: TRUE
3131
URL: https://future.batchtools.futureverse.org, https://github.com/HenrikBengtsson/future.batchtools
3232
BugReports: https://github.com/HenrikBengtsson/future.batchtools/issues
33-
RoxygenNote: 7.2.3
33+
RoxygenNote: 7.3.2
3434
Roxygen: list(markdown = TRUE)

R/BatchtoolsFuture-class.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ run.BatchtoolsFuture <- function(future, ...) {
543543
## batchtools which incorrectly tries to parse it. By unsetting all DYLD_*
544544
## environment variables, we avoid this message. For more info, see:
545545
## * https://github.com/tudo-r/BatchJobs/issues/117
546-
## * https://github.com/HenrikBengtsson/future.BatchJobs/issues/59
546+
## * https://github.com/futureverse/future.BatchJobs/issues/59
547547
## /HB 2016-05-07
548548
dyld_envs <- tryCatch({
549549
envs <- list()
@@ -696,7 +696,7 @@ await <- function(future, cleanup = TRUE,
696696
}
697697

698698
if (length(prototype_fields) > 0) {
699-
result$PROTOTYPE_WARNING <- sprintf("WARNING: The fields %s should be considered internal and experimental for now, that is, until the Future API for these additional features has been settled. For more information, please see https://github.com/HenrikBengtsson/future/issues/172", hpaste(sQuote(prototype_fields), max_head = Inf, collapse = ", ", last_collapse = " and "))
699+
result$PROTOTYPE_WARNING <- sprintf("WARNING: The fields %s should be considered internal and experimental for now, that is, until the Future API for these additional features has been settled. For more information, please see https://github.com/futureverse/future/issues/172", hpaste(sQuote(prototype_fields), max_head = Inf, collapse = ", ", last_collapse = " and "))
700700
}
701701

702702
## Cleanup?

R/future.batchtools-package.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#' demo("mandelbrot", package = "future", ask = FALSE)
1919
#' }
2020
#'
21-
#' @docType package
2221
#' @name future.batchtools
2322
#' @aliases future.batchtools-package
24-
NULL
23+
"_PACKAGE"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
<div id="badges"><!-- pkgdown markup -->
4-
<a href="https://CRAN.R-project.org/web/checks/check_results_future.batchtools.html"><img border="0" src="https://www.r-pkg.org/badges/version/future.batchtools" alt="CRAN check status"/></a> <a href="https://github.com/HenrikBengtsson/future.batchtools/actions?query=workflow%3AR-CMD-check"><img border="0" src="https://github.com/HenrikBengtsson/future.batchtools/actions/workflows/R-CMD-check.yaml/badge.svg?branch=develop" alt="R CMD check status"/></a> <a href="https://github.com/HenrikBengtsson/future.batchtools/actions?query=workflow%3Afuture_tests"><img border="0" src="https://github.com/HenrikBengtsson/future.batchtools/actions/workflows/future_tests.yaml/badge.svg?branch=develop" alt="future.tests checks status"/></a> <a href="https://app.codecov.io/gh/HenrikBengtsson/future.batchtools"><img border="0" src="https://codecov.io/gh/HenrikBengtsson/future.batchtools/branch/develop/graph/badge.svg" alt="Coverage Status"/></a>
4+
<a href="https://CRAN.R-project.org/web/checks/check_results_future.batchtools.html"><img border="0" src="https://www.r-pkg.org/badges/version/future.batchtools" alt="CRAN check status"/></a> <a href="https://github.com/futureverse/future.batchtools/actions?query=workflow%3AR-CMD-check"><img border="0" src="https://github.com/futureverse/future.batchtools/actions/workflows/R-CMD-check.yaml/badge.svg?branch=develop" alt="R CMD check status"/></a> <a href="https://github.com/futureverse/future.batchtools/actions?query=workflow%3Afuture_tests"><img border="0" src="https://github.com/futureverse/future.batchtools/actions/workflows/future_tests.yaml/badge.svg?branch=develop" alt="future.tests checks status"/></a> <a href="https://app.codecov.io/gh/futureverse/future.batchtools"><img border="0" src="https://codecov.io/gh/futureverse/future.batchtools/branch/develop/graph/badge.svg" alt="Coverage Status"/></a>
55
</div>
66

77
# future.batchtools: A Future API for Parallel and Distributed Processing using 'batchtools'
@@ -255,7 +255,7 @@ install.packages("future.batchtools")
255255
256256
To install the pre-release version that is available in Git branch `develop` on GitHub, use:
257257
```r
258-
remotes::install_github("HenrikBengtsson/future.batchtools", ref="develop")
258+
remotes::install_github("futureverse/future.batchtools", ref="develop")
259259
```
260260
This will install the package from source.
261261

man/future.batchtools.Rd

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgdown/_pkgdown.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,20 @@ navbar:
1919
pkgs:
2020
text: Packages
2121
menu:
22-
- text: doFuture
22+
- text: doFuture (map-reduce)
2323
href: https://doFuture.futureverse.org
24-
- text: furrr
24+
- text: furrr (map-reduce)
2525
href: https://furrr.futureverse.org
2626
- text: future
2727
href: https://future.futureverse.org
28-
- text: future.apply
28+
- text: future.apply (map-reduce)
2929
href: https://future.apply.futureverse.org
30-
- text: future.batchtools
30+
- text: future.batchtools (backend)
3131
href: https://future.batchtools.futureverse.org
32-
- text: future.callr
32+
- text: future.callr (backend)
3333
href: https://future.callr.futureverse.org
34+
- text: future.mirai (backend)
35+
href: https://future.mirai.futureverse.org
3436
- text: future.tests
3537
href: https://future.tests.futureverse.org
3638
- text: globals
@@ -45,8 +47,6 @@ navbar:
4547
href: https://BiocParallel.FutureParam.futureverse.org
4648
- text: future.tools (experimental)
4749
href: https://future.tools.futureverse.org
48-
- text: future.mirai (experimental)
49-
href: https://future.mirai.futureverse.org
5050
- text: future.mapreduce (experimental)
5151
href: https://future.mapreduce.futureverse.org
5252
- text: marshal (experimental)

pkgdown/_pkgdown.yml.rsp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<%
2-
pkgs <- c("globals", "listenv", "parallelly", "future", "future.apply", "furrr", "future.tests", "future.callr", "future.batchtools", "doFuture", "progressr")
3-
pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mirai", "future.mapreduce", "marshal")
2+
pkgs_mapreduce <- c("future.apply", "doFuture", "furrr")
3+
pkgs_backend <- c("future.batchtools", "future.callr", "future.mirai")
4+
pkgs <- c("globals", "listenv", "parallelly", "future", "future.tests", "progressr", pkgs_mapreduce, pkgs_backend)
5+
pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mapreduce", "marshal")
46
pkgs <- c(sort(pkgs), pkgs_extra)
57
urls <- sprintf("https://%s.futureverse.org", pkgs)
68
names(urls) <- pkgs
@@ -16,11 +18,11 @@ url: https://<%= pkg %>.futureverse.org
1618
home:
1719
links:
1820
- text: Roadmap/Milestones
19-
href: https://github.com/HenrikBengtsson/<%= pkg %>/milestones
21+
href: https://github.com/<%= gsub("(^.*:|[.]git$)", "", subset(gert::git_remote_list(), name == "origin")$url) %>/milestones
2022
- text: The Futureverse Project
2123
href: https://www.futureverse.org/
2224
- text: Futureverse User Forum
23-
href: https://github.com/HenrikBengtsson/future/discussions
25+
href: https://github.com/futureverse/future/discussions
2426

2527
navbar:
2628
structure:
@@ -33,7 +35,7 @@ navbar:
3335
text: Packages
3436
menu:
3537
<% for (name in names(urls)) { %>
36-
- text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } %>
38+
- text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } else if (name %in% pkgs_backend) { %>(backend)<% } else if (name %in% pkgs_mapreduce) { %>(map-reduce)<% } %>
3739
href: <%= urls[name] %>
3840
<% } %>
3941
cran:

0 commit comments

Comments
 (0)