Skip to content

Commit 6099573

Browse files
authored
chore: Update quarto, requirements.txt and software versions (#42)
1 parent 2f693ec commit 6099573

19 files changed

+57
-48
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ rsconnect/
1818
^\.commitlintrc\.yml$
1919
^[.]?air[.]toml$
2020
^\.vscode$
21+
\.venv
22+
\.husky

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ inst/doc
3030
*.swp
3131
.Rproj.user
3232
config-uat-rsc.yml
33+
.venv/

.gitlab-ci.yml

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

.lintr

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
linters: linters_with_defaults(
22
assignment_linter = NULL,
33
line_length_linter(100),
4+
pipe_consistency_linter = NULL,
45
undesirable_operator_linter(
56
modify_defaults(
67
default_undesirable_operators,
@@ -9,5 +10,6 @@ linters: linters_with_defaults(
910
)
1011
)
1112
exclusions: list(
12-
"^cache/"
13+
"^cache/",
14+
"inst/extdata/render_quarto/observable/"
1315
)

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: audit.base
33
Title: Base package for Posit Checks
4-
Version: 0.6.22
4+
Version: 0.6.23
55
Authors@R:
66
person("Jumping", "Rivers", , "info@jumpingrivers.com", role = c("aut", "cre"))
77
Description: Base package for sharing classes between posit audit
@@ -32,4 +32,4 @@ Remotes:
3232
Config/testthat/edition: 3
3333
Encoding: UTF-8
3434
LazyData: true
35-
RoxygenNote: 7.3.2
35+
RoxygenNote: 7.3.3

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# audit.base 0.6.23 _2026-01-30_
2+
- chore: Update quarto, requirements.txt and software versions
3+
14
# audit.base 0.6.22 _2025-07-21_
25
- chore: Use air for formatting
36
- chore: Update requirements.txt for python example

R/check.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ init_r6_check = function(export, dir, file, pkg_name) {
2929
} else {
3030
obj = NULL
3131
}
32-
return(obj)
32+
obj
3333
}

R/check_sys_deps.R

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
check_sys_deps = function(os_release, installed_libs, debug_level = 0:2) {
1313
debug_level = get_debug_level(debug_level)
1414
cli::cli_h2("Systems Libraries")
15-
cli::cli_alert_info(
16-
"This may take a few minutes as we are deploying a plumber API onto Connect"
17-
)
1815
# Clean up response
1916
pkg_look_up = get_os_sys_deps(os_release)
2017

@@ -28,7 +25,7 @@ check_sys_deps = function(os_release, installed_libs, debug_level = 0:2) {
2825
cli::cli_alert_info("Missing sys_libs: {sys_libs}")
2926
cli::cli_alert_info("Note: this is not necessarily a bad thing")
3027
}
31-
return(missing_libs)
28+
missing_libs
3229
}
3330

3431
# Contents of /etc/os-release

R/config.R

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ create_config = function(file, pkg_name) {
2121
yaml_file = file.path(dir, file)
2222
if (type == "error" && file.exists(yaml_file)) {
2323
cli::cli_abort(
24-
"Config file already exists.
25-
Either delete or change the `type` argument."
24+
"Config file already exists. Either delete or change the `type` argument."
2625
)
2726
}
2827

@@ -32,7 +31,7 @@ create_config = function(file, pkg_name) {
3231
new_config = merge_configs(new_config, existing_config)
3332
}
3433
yaml::write_yaml(new_config, file = yaml_file)
35-
return(invisible(new_config))
34+
invisible(new_config)
3635
}
3736
}
3837
create_config_list = function(dir, file, default, pkg_name) {

R/get_latest_versions_remote.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ get_latest_versions_remote = function() {
1515
"1.4.557",
1616
"1.5.57",
1717
"1.6.43",
18+
"1.7.34",
1819
stringr::str_remove(q$name, "^v")
1920
)
2021

0 commit comments

Comments
 (0)