-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/optional-test-deps
- Loading branch information
Showing
27 changed files
with
207 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,4 @@ | |
^vignettes$ | ||
^man/_cache$ | ||
^README_cache$ | ||
^LICENSE\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,26 +22,27 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: macOS-latest, r: 'release'} | ||
- {os: macos-latest, r: 'release'} | ||
|
||
- {os: windows-latest, r: 'release'} | ||
# Use 3.6 to trigger usage of RTools35 | ||
- {os: windows-latest, r: '3.6'} | ||
# use 4.1 to check with rtools40's older compiler | ||
- {os: windows-latest, r: '4.1'} | ||
|
||
# Use older ubuntu to maximise backward compatibility | ||
- {os: ubuntu-20.04, r: 'devel', http-user-agent: 'release'} | ||
- {os: ubuntu-20.04, r: 'release'} | ||
- {os: ubuntu-20.04, r: 'oldrel-1'} | ||
- {os: ubuntu-20.04, r: 'oldrel-2'} | ||
- {os: ubuntu-20.04, r: 'oldrel-3'} | ||
- {os: ubuntu-20.04, r: 'oldrel-4'} | ||
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | ||
- {os: ubuntu-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'oldrel-1'} | ||
- {os: ubuntu-latest, r: 'oldrel-2'} | ||
- {os: ubuntu-latest, r: 'oldrel-3'} | ||
- {os: ubuntu-latest, r: 'oldrel-4'} | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_KEEP_PKG_SOURCE: yes | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
|
@@ -53,9 +54,8 @@ jobs: | |
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck, r-lib/[email protected] | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
pak-version: rc | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,11 @@ jobs: | |
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_CLI_NUM_COLORS: 256 | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
|
@@ -32,19 +35,18 @@ jobs: | |
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
pak-version: rc | ||
|
||
- name: Build site | ||
run: | | ||
rmarkdown::render("README.Rmd") | ||
pkgdown::build_site_github_pages(new_process = TRUE, install = FALSE) | ||
pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
env: | ||
IN_PKGDOWN: true | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected].4 | ||
uses: JamesIves/github-pages-deploy-action@v4.4.1 | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
Package: callr | ||
Title: Call R from R | ||
Version: 3.7.3.9000 | ||
Version: 3.7.5.9000 | ||
Authors@R: c( | ||
person("Gábor", "Csárdi", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0001-7098-9676")), | ||
person("Winston", "Chang", role = "aut"), | ||
person("RStudio", role = c("cph", "fnd")), | ||
person("Mango Solutions", role = c("cph", "fnd")) | ||
person("Posit Software, PBC", role = c("cph", "fnd")), | ||
person("Ascent Digital Services", role = c("cph", "fnd")) | ||
) | ||
Description: It is sometimes useful to perform a computation in a separate | ||
R process, without affecting the current R process at all. This | ||
packages does exactly that. | ||
License: MIT + file LICENSE | ||
URL: https://callr.r-lib.org, https://github.com/r-lib/callr#readme | ||
URL: https://callr.r-lib.org, https://github.com/r-lib/callr | ||
BugReports: https://github.com/r-lib/callr/issues | ||
Depends: R (>= 3.4) | ||
Depends: | ||
R (>= 3.4) | ||
Imports: | ||
processx (>= 3.6.1), | ||
R6, | ||
utils | ||
Suggests: | ||
asciicast, | ||
asciicast (>= 2.3.1), | ||
cli (>= 1.1.0), | ||
mockery, | ||
ps, | ||
rprojroot, | ||
spelling, | ||
testthat (>= 3.0.0), | ||
testthat (>= 3.2.0), | ||
withr (>= 2.3.0) | ||
Encoding: UTF-8 | ||
Language: en-US | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.1.9000 | ||
Config/testthat/edition: 3 | ||
Config/Needs/website: | ||
r-lib/asciicast, | ||
glue, | ||
htmlwidgets, | ||
igraph, | ||
tibble, | ||
tidyverse/tidytemplate | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
Language: en-US | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2016 | ||
COPYRIGHT HOLDER: Mango Solutions, RStudio | ||
YEAR: 2024 | ||
COPYRIGHT HOLDER: see COPYRIGHTS file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# MIT License | ||
|
||
Copyright (c) 2023 callr authors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.