File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,15 @@ checkbashisms ./configure # for portability; e.g. Solaris 10 running Bourne she
5151
5252# Ensure no non-ASCII, other than in README.md is ok
5353# tests.Rraw in particular have failed CRAN Solaris (only) due to this.
54- grep -RI --exclude-dir=" .git" --exclude=" *.md" --exclude=" *~" --color='auto' -P -n " [\x80-\xFF]" ./
54+ # grep -RI --exclude-dir=" .git" --exclude=" *.md" --exclude=" *~" --color='auto' -P -n " [\x80-\xFF]" ./ # outdated check as Non-ASCII can be in other places
5555
5656# Unicode is now ok. This unicode in tests.Rraw is passing on CRAN.
57- grep -RI --exclude-dir=" .git" --exclude=" *.md" --exclude=" *~" --color='auto' -n " [\]u[0-9]" ./
57+ # grep -RI --exclude-dir=" .git" --exclude=" *.md" --exclude=" *~" --color='auto' -n " [\]u[0-9]" ./
5858
59- # Ensure no call s to omp_get_max_threads() also since access should be via getDTthreads()
59+ # Ensure no call s to omp_get_max_threads() also since access should be via getDTthreads() -- shows 4 lines, in fread.c and myomp.h
6060grep --exclude=" ./src/openmp-utils.c" omp_get_max_threads ./src/*
6161
62- # Ensure all #pragama omp parallel directives include a num_threads() clause
62+ # Ensure all #pragama omp parallel directives include a num_threads() clause -- shows 8 lines, all ok
6363grep -i " pragma.*omp parallel" ./src/*.c | grep -v getDTthreads
6464# for each num_threads(nth) above, ensure for Solaris that the variable is not declared const, #4638
6565grep -i " const.*int.*nth" ./src/*.c
Original file line number Diff line number Diff line change 11Package: data.table
2- Version: 1.17.7
2+ Version: 1.17.8
33Title: Extension of `data.frame`
44Depends: R (>= 3.3.0)
55Imports: methods
Original file line number Diff line number Diff line change @@ -426,5 +426,5 @@ SEXP initLastUpdated(SEXP var)
426426SEXP dllVersion (void )
427427{
428428 // .onLoad calls this and checks the same as packageVersion() to ensure no R/C version mismatch, #3056
429- return (ScalarString (mkChar ("1.17.7 " )));
429+ return (ScalarString (mkChar ("1.17.8 " )));
430430}
You can’t perform that action at this time.
0 commit comments