Skip to content

Commit

Permalink
CRAN comments
Browse files Browse the repository at this point in the history
  • Loading branch information
atsyplenkov committed Nov 4, 2024
1 parent ba71c51 commit 9ef000a
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 8 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
^doc$
^Meta$
^vignettes/articles$
^revdep$
18 changes: 18 additions & 0 deletions .github/workflows/CRAN-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check CRAN status

on:
schedule:
# Runs daily at 4:00 PM UTC (9:00 AM PST)
- cron: '0 16 * * *'
# allows for manually running of the check
workflow_dispatch:

jobs:
check_cran_status:
runs-on: ubuntu-latest

steps:
- name: Get CRAN checks
uses: flrsh-dev/cran-checks/check-pkg@main
with:
pkg: centerline
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: centerline
Title: Extract Centerline from Closed Polygons
Version: 0.2.0.9000
Version: 0.2.1
Authors@R:
c(
person(given = "Anatoly",
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
centerline 0.2.1 (2024-11-05)
=========================

### UPDATES

* the `raybevel` package was removed from CRAN on October 22, 2024. It is not a core dependency, but it is crucial for some functions in the `centerline` pkg. To maintain `raybevel::skeletonize` accessibility for the `cnt_skeleton` function, `raybevel` is temporarily installed from GitHub.

centerline 0.2 (2024-10-01)
=========================

Expand Down
22 changes: 15 additions & 7 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# centerline v0.2
Minor release of centerline package, introducing website, new family of
`geom_cnt_*()` functions and new method to generate polygon skeleton.
# centerline v0.2.1
Major release of centerline package, introducing website, new family of
`geom_cnt_*()` functions and new method to generate polygon skeletons. The latter depends on the `raybevel` package which was archived on CRAN on October 22, 2024. It is not a core dependency, but it is crucial for some functions in the `centerline` pkg. To maintain `raybevel::skeletonize` accessibility for the `cnt_skeleton` function, `raybevel` is temporarily installed from GitHub. See notes of the R CMD check results.

## Test environments
* local Windows 10 install, R 4.4.1 patched
Expand All @@ -15,10 +15,18 @@ Minor release of centerline package, introducing website, new family of
0 errors | 0 warnings | 0 notes

## local R CMD check results
0 errors | 0 warnings | 2 notes

- All notes appear to be related to my local testing environment, since
I haven't seen them during remote testing
0 errors | 0 warnings | 3 notes

* checking CRAN incoming feasibility ... [39s] NOTE
Maintainer: 'Anatoly Tsyplenkov <atsyplenkov@fastmail.com>'

Unknown, possibly misspelled, fields in DESCRIPTION:
'Remotes'

Suggests or Enhances not in mainstream repositories:
raybevel

> Notes below appear to be related to my local testing environment, since I haven't seen them during remote testing
* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
Expand Down

1 comment on commit 9ef000a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.