cran-task-views/Hydrology

Task view not being update

Closed this issue · 4 comments

@zeileis I am noticing that the task view is not being updated with new changes. Any ideas on that?

Why do you think it isn't updated? The version on CRAN looks up-to-date to me:

github <- readLines("https://raw.githubusercontent.com/cran-task-views/Hydrology/refs/heads/main/Hydrology.md")
cran <- readLines("https://cran.r-project.org/web/views/Hydrology.md")
all.equal(github, cran)
## [1] TRUE
identical(github, cran)
## [1] TRUE

A cronjob runs once per day and pulls the latest version of the .md from the main branch and updates the CRAN version correspondingly.

Ah ok. Any idea why the date is not updated then?
image

That's the version number you assign in the .md: https://github.com/cran-task-views/Hydrology/blob/main/Hydrology.md?plain=1#L6

This is not changed automatically.

Ok thanks for that. I think I will try to automate that.