We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running make check (or R CMD check '.') raises the following error:
make check
R CMD check '.'
* checking package namespace information ... OK * checking package dependencies ... ERROR Namespace dependencies not required: ‘ccdata’ ‘sdcMicro’ ‘yaml’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE Status: 1 ERROR
It looks like this issue can be fixed by adding ccdata, sdcMicro, yaml to the imports field in the DESCRIPTION file, so the following entry:
ccdata, sdcMicro, yaml
Imports: data.table
...becomes
Imports: data.table, ccdata, sdcMicro, yaml
The text was updated successfully, but these errors were encountered:
add imports. ref #18
0a3fc58
Merge branch 'master' of github.com:UCL-HIC/ccanonym
fc4020b
* 'master' of github.com:UCL-HIC/ccanonym: update function name heaptic => hepatic. Ref #16 minor text changes fix path. ref #20 add imports. ref #18
No branches or pull requests
Running
make check
(orR CMD check '.'
) raises the following error:It looks like this issue can be fixed by adding
ccdata, sdcMicro, yaml
to the imports field in the DESCRIPTION file, so the following entry:...becomes
The text was updated successfully, but these errors were encountered: