Skip to content

Commit

Permalink
Fix_website (#295)
Browse files Browse the repository at this point in the history
* update openproblems submodule

* add redirect

* add entries to renvignore

* fix minor issues in qmds

* update changelog

* update changelog
  • Loading branch information
rcannood authored Oct 24, 2023
1 parent 3d448ca commit 23c8efb
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .renvignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
_freeze
_openproblems-v2
_site
.quarto

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# openproblems.bio unreleased

## BUG FIXES

* Updated the `openproblems-v2` submodule (PR #295). This fixes a deprecation error due to an update in ruamel.yaml.

* Add redirect from `/benchmark_dataset` to `/events/2021-09_neurips/documentation/data/dataset.html` (#292, PR #295).

* Fixed minor issues in qmd files (PR #295).

# openproblems.bio v2.3.5

## MINOR CHANGES
Expand Down
2 changes: 1 addition & 1 deletion _openproblems-v2
3 changes: 2 additions & 1 deletion _redirects
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
/competitions/neurips_2021 /events/2021-09_neurips
/competitions/neurips_2022 /events/2022-08_neurips
/competitions/neurips_2021_docs/* /events/2021-09_neurips/documentation/:splat
/jamboree /events/2021-03_jamboree
/jamboree /events/2021-03_jamboree
/benchmark_dataset /events/2021-09_neurips/documentation/data/dataset.html
4 changes: 2 additions & 2 deletions documentation/create_component/_include/_add_dependencies.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you're using a custom image use the following minimum setup:

::: {.panel-tabset}
## Python
```{yaml}
```yaml
platforms:
- type: docker
Image: your custom image
Expand All @@ -29,7 +29,7 @@ platforms:
## R
```{yaml}
```yaml
platforms:
- type: docker
Image: your custom image
Expand Down
2 changes: 1 addition & 1 deletion results/_include/_dataset_descriptions.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ lines <- pmap_chr(dataset_info, function(dataset_name, dataset_summary, data_ref
summ <- (dataset_summary %|% "Missing 'dataset_summary'") %>% str_replace_all("\\. *$", "")
glue::glue("* **{dataset_name}**{ref}: {summ}.")
})
knitr::asis_output(lines)
knitr::asis_output(paste(lines, collapse = "\n"))
```
2 changes: 1 addition & 1 deletion results/_include/_method_descriptions.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ lines <- pmap_chr(method_info, function(method_name, method_summary, paper_refer
summ <- (method_summary %|% "Missing 'method_summary'") %>% str_replace_all("\\. *$", "")
glue::glue("* **{method_name}**{ref}: {summ}.{version_label}{links_label}")
})
knitr::asis_output(lines)
knitr::asis_output(paste(lines, collapse = "\n"))
```

2 changes: 1 addition & 1 deletion results/_include/_metric_descriptions.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ lines <- pmap_chr(metric_info, function(metric_name, metric_summary, paper_refer
summ <- (metric_summary %|% "Missing 'metric_summary'") %>% str_replace_all("\\. *$", "")
glue::glue("* **{metric_name}**{ref}: {summ}.")
})
knitr::asis_output(lines)
knitr::asis_output(paste(lines, collapse = "\n"))
```

0 comments on commit 23c8efb

Please sign in to comment.