ngreifer / cobalt

Covariate Balance Tables and Plots - An R package for assessing covariate balance
https://ngreifer.github.io/cobalt/
72 stars 11 forks source link

Incorrect {gridExtra} version number in DESCRIPTION file #47

Closed mantramantra12 closed 3 years ago

mantramantra12 commented 3 years ago

Problem

Under imports in the package DESCRIPTION file, gridExtra (>= 2.3.0) is listed

gridExtra 2.3.0 does not actually exist, 2.3 does.

Consequences

install.packges() sees these as the same which is why this has gone unnoticed, however some package managers (yum, for example) do not, which causes issues on installation.

Solution

replace gridExtra (>= 2.3.0) with gridExtra (>= 2.3) in the DESCRIPTION file.

ngreifer commented 3 years ago

Fixed! Thank you for pointing this out and sorry for the bug.