Skip to content

Commit

Permalink
Merge pull request #177 from olivroy/ellipsis
Browse files Browse the repository at this point in the history
Remove ellipsis dependency
  • Loading branch information
shwilks authored Jun 27, 2024
2 parents abe5b3b + 414c8cc commit f75f9cd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

Expand All @@ -39,7 +39,7 @@ jobs:

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4.4.1
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
clean: false
branch: gh-pages
Expand Down
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ Imports:
htmltools,
rmarchingcubes,
shape,
ellipsis,
MASS,
magrittr,
igraph,
dplyr,
vctrs,
rlang
rlang (>= 1.0.0)
LazyData: TRUE
Suggests:
testthat,
Expand Down
2 changes: 1 addition & 1 deletion R/map_new.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ acmap <- function(
) {

# Check input
ellipsis::check_dots_used()
rlang::check_dots_used()
titer_table <- table_arg_deprecated(titer_table, ...)

# Infer the number of antigens and sera
Expand Down
2 changes: 1 addition & 1 deletion R/map_optimize.R
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ make.acmap <- function(
) {

# Check arguments
ellipsis::check_dots_used()
rlang::check_dots_used()

# Make the chart
map <- acmap(
Expand Down

0 comments on commit f75f9cd

Please sign in to comment.