Skip to content

Commit 73d81ce

Browse files
future 1.40.0 is on CRAN
1 parent 09e7511 commit 73d81ce

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
R_PARALLELLY_AVAILABLECORES_SYSTEM: ${{ matrix.config.availablecores }}
5454
R_FUTURE_RNG_ONMISUSE: error
5555
R_FUTURE_GLOBALS_KEEPWHERE: ${{ matrix.config.globals_keepWhere }}
56-
R_PARALLELLY_BRANCH: ${{ matrix.config.parallelly }}
5756

5857
steps:
5958
- uses: actions/checkout@v4
@@ -76,10 +75,6 @@ jobs:
7675
- name: Install package itself (special case)
7776
run: |
7877
install.packages(".", repos = NULL, type = "source") ## needed by parallel workers
79-
pver <- Sys.getenv("R_PARALLELLY_BRANCH")
80-
if (nzchar(pver)) {
81-
remotes::install_github("futureverse/parallelly", ref = pver)
82-
}
8378
8479
shell: Rscript {0}
8580

.github/workflows/future_tests-future.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
future:
19-
- { plan: 'cluster' }
20-
- { plan: 'multicore' }
21-
- { plan: 'multisession' }
22-
- { plan: 'sequential' }
19+
- { plan: 'cluster' }
20+
- { plan: 'multicore' }
21+
- { plan: 'multisession' }
22+
- { plan: 'sequential' }
2323

2424
env:
2525
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package: future.tests
22
Title: Test Suite for 'Future API' Backends
3-
Version: 0.8.0-9004
3+
Version: 0.8.0-9005
44
Authors@R: c(
55
person("Henrik", "Bengtsson", role = c("aut", "cre", "cph"), email = "[email protected]"),
66
person(family = "The R Consortium", comment = "Project was awared an Infrastructure Steering Committee (ISC) grant in 2017", role = "fnd"))
77
Description: Backends implementing the 'Future' API <doi:10.32614/RJ-2021-048>, as defined by the 'future' package, should use the tests provided by this package to validate that they meet the minimal requirements of the 'Future' API. The tests can be performed easily from within R or from outside of R from the command line making it straightforward to include them in package tests and in Continuous Integration (CI) pipelines.
88
Imports:
9-
future (>= 1.22.1),
9+
future (>= 1.40.0),
1010
cli,
1111
crayon,
1212
prettyunits,

0 commit comments

Comments
 (0)