You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which then causes the deployment to fail in RSConnect (via git deployment)
My workaround for this at present is to set options(available_packages_filters = character()) before calling writeManifest - but it feels like writeManifest should somehow handle this problem internally - maybe by setting the filters in the call to available.packages or maybe by searching in
the archives for each repo.
The text was updated successfully, but these errors were encountered:
hollywoof
added a commit
to hollywoof/rsconnect
that referenced
this issue
Jun 1, 2020
I'm encountering an issue with writing manifest files for RStudio Connect at present.
I think this is due to the latest RODBC requiring R version 4 - which means that the current version is unavailable in my current R version (3.6.3).
I think the
writeManifest
call is having problems due to theavailable.packages
call onrsconnect/R/dependencies.R
Line 83 in 40c162b
It causes a warning "Unable to find repository URL for package RODBC" and causes the manifest to output as:
which then causes the deployment to fail in RSConnect (via git deployment)
My workaround for this at present is to set
options(available_packages_filters = character())
before callingwriteManifest
- but it feels likewriteManifest
should somehow handle this problem internally - maybe by setting thefilters
in the call toavailable.packages
or maybe by searching inthe archives for each repo.
The text was updated successfully, but these errors were encountered: