Skip to content

Commit d16c76a

Browse files
authored
Merge branch 'main' into ipcw
2 parents fc351d7 + d7584be commit d16c76a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+380
-640
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ representative at an online or offline event.
5959
## Enforcement
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62-
reported to the community leaders responsible for enforcement at codeofconduct@rstudio.com.
62+
reported to the community leaders responsible for enforcement at codeofconduct@posit.co.
6363
All complaints will be reviewed and investigated promptly and fairly.
6464

6565
All community leaders are obligated to respect the privacy and security of the

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
3333
- {os: ubuntu-latest, r: 'release'}
3434
- {os: ubuntu-latest, r: 'oldrel-1'}
35-
- {os: ubuntu-latest, r: 'oldrel-2'}
35+
# - {os: ubuntu-latest, r: 'oldrel-2'} # until lava issues resolved
3636
#- {os: ubuntu-latest, r: 'oldrel-3'}
3737
#- {os: ubuntu-latest, r: 'oldrel-4'}
3838

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 128 deletions
This file was deleted.

DESCRIPTION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: tune
22
Title: Tidy Tuning Tools
3-
Version: 1.0.1.9002
3+
Version: 1.0.1.9003
44
Authors@R: c(
5-
person("Max", "Kuhn", , "max@rstudio.com", role = c("aut", "cre"),
5+
person("Max", "Kuhn", , "max@posit.co", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2402-136X")),
7-
person("RStudio", role = c("cph", "fnd"))
7+
person(given = "Posit Software, PBC", role = c("cph", "fnd"))
88
)
99
Description: The ability to tune models is important. 'tune' contains
1010
functions and classes to be used in conjunction with other
@@ -35,7 +35,7 @@ Imports:
3535
tibble (>= 3.1.0),
3636
tidyr (>= 1.2.0),
3737
tidyselect (>= 1.1.2),
38-
vctrs (>= 0.4.1),
38+
vctrs (>= 0.6.1),
3939
withr,
4040
workflows (>= 1.0.0),
4141
yardstick (>= 1.0.0)

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2020
2-
COPYRIGHT HOLDER: RStudio
1+
YEAR: 2023
2+
COPYRIGHT HOLDER: tune authors

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2020 RStudio
3+
Copyright (c) 2023 tune authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NAMESPACE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ importFrom(cli,qty)
234234
importFrom(dials,encode_unit)
235235
importFrom(dials,is_unknown)
236236
importFrom(dials,parameters)
237-
importFrom(dials,parameters_constr)
238237
importFrom(dplyr,"%>%")
239238
importFrom(dplyr,all_of)
240239
importFrom(dplyr,anti_join)

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# tune (development version)
22

3+
* Allowed users to supply list-columns in `grid` arguments. (#625)
4+
5+
* Fixed bug in `tune_bayes()` where `.Last.tune.result` would return intermediate tuning results. (#613)
6+
37
* Refined machinery for logging issues during tuning. Rather than printing out warnings and errors as they appear, the package will now only print unique tuning issues, and iteratively update a progress bar to maintain counts of each unique issue. This feature is only enabled for tuning sequentially. (#588)
48

59
* Introduced a new function `fit_best()` that provides a shorthand interface to fit a final model after parameter tuning. (#586)

R/0_imports.R

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#' @importFrom rlang is_false eval_tidy expr sym syms env_get is_function :=
88
#' @importFrom rlang is_missing %||%
99
#' @importFrom glue glue glue_collapse
10-
#' @importFrom dials parameters_constr is_unknown encode_unit
10+
#' @importFrom dials is_unknown encode_unit
1111
#' @importFrom stats sd qt qnorm dnorm pnorm predict model.matrix setNames
1212
#' @importFrom stats model.matrix model.response model.frame update
1313
#' @importFrom yardstick rsq rmse accuracy roc_auc brier_survival
@@ -50,10 +50,6 @@ utils::globalVariables(
5050

5151
# ------------------------------------------------------------------------------
5252

53-
tidyr_new_interface <- function() {
54-
utils::packageVersion("tidyr") > "0.8.99"
55-
}
56-
5753
release_bullets <- function() {
5854
c(
5955
"Update dependencies with `devtools::install_dev_deps()` and update the test objects via `R CMD BATCH --vanilla inst/test_objects.R`.",

0 commit comments

Comments
 (0)