From 9e65126bd2b8a1c9bac9c8fdf8295656cbb1983f Mon Sep 17 00:00:00 2001 From: Marcin <133694481+m7pr@users.noreply.github.com> Date: Tue, 19 Nov 2024 08:58:21 +0100 Subject: [PATCH] Update teal.slice version (#1414) Once this was merged in teal.slice and the version was bumped to `0.5.1.9013` https://github.com/insightsengineering/teal.slice/pull/622 We now allow non-alphabetical non-standard names in filter panel. Without it, some tests break. Below is for teal.slice `0.5.1.9012` ```r data = within( teal.data::teal_data(), { iris <- iris mtcars <- mtcars `_a variable with spaces_` <- "new_column" # nolint: object_name. iris <- cbind(iris, data.frame(`_a variable with spaces_`)) } ) teal_data_to_filtered_data(data) Error in check_simple_name(dataname) : name '_a variable with spaces_' must only contain alphanumeric characters (with underscores) and the first character must be an alphabetic character Called from: check_simple_name(dataname) ``` --------- Signed-off-by: Marcin <133694481+m7pr@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 25d5f93e12..975cde2847 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -38,7 +38,7 @@ Depends: R (>= 4.0), shiny (>= 1.8.1), teal.data (>= 0.6.0.9017), - teal.slice (>= 0.5.1.9009) + teal.slice (>= 0.5.1.9015) Imports: checkmate (>= 2.1.0), crayon,