Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

P learners version #200

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/rcheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Workflow based on https://github.com/r-lib/actions/tree/master/examples#standard-ci-workflow
name: build
name: build (fixed mlr3learners version)

on:
push:
Expand Down Expand Up @@ -80,6 +80,12 @@ jobs:
remotes::install_github("mlr-org/mlr3")
remotes::install_github("mlr-org/paradox")
shell: Rscript {0}

- name: Install fixed version of mlr3learers
run: |
remotes::install_version("mlr3learners", version = "0.3.0")
print(sessionInfo())
shell: Rscript {0}

- name: Check
if: |
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Imports:
utils,
clusterGeneration,
readstata13,
mlr3learners (>= 0.3.0),
mlr3learners,
mlr3misc
Roxygen: list(markdown = TRUE, r6 = TRUE)
RoxygenNote: 7.3.1
Expand Down
Loading