Skip to content

Commit f75f9cd

Browse files
authored
Merge pull request #177 from olivroy/ellipsis
Remove ellipsis dependency
2 parents abe5b3b + 414c8cc commit f75f9cd

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
R_KEEP_PKG_SOURCE: yes
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333

3434
- uses: r-lib/actions/setup-pandoc@v2
3535

.github/workflows/pkgdown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- uses: r-lib/actions/setup-pandoc@v2
2626

@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Deploy to GitHub pages 🚀
4141
if: github.event_name != 'pull_request'
42-
uses: JamesIves/github-pages-deploy-action@v4.4.1
42+
uses: JamesIves/github-pages-deploy-action@v4.5.0
4343
with:
4444
clean: false
4545
branch: gh-pages

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@ Imports:
3131
htmltools,
3232
rmarchingcubes,
3333
shape,
34-
ellipsis,
3534
MASS,
3635
magrittr,
3736
igraph,
3837
dplyr,
3938
vctrs,
40-
rlang
39+
rlang (>= 1.0.0)
4140
LazyData: TRUE
4241
Suggests:
4342
testthat,

R/map_new.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ acmap <- function(
3939
) {
4040

4141
# Check input
42-
ellipsis::check_dots_used()
42+
rlang::check_dots_used()
4343
titer_table <- table_arg_deprecated(titer_table, ...)
4444

4545
# Infer the number of antigens and sera

R/map_optimize.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ make.acmap <- function(
201201
) {
202202

203203
# Check arguments
204-
ellipsis::check_dots_used()
204+
rlang::check_dots_used()
205205

206206
# Make the chart
207207
map <- acmap(

0 commit comments

Comments
 (0)