robjohnnoble / ggmuller

Create Muller Plots of Evolutionary Dynamics
Other
64 stars 9 forks source link

Resolve name conflict for `where()` between dplyr and ape #19

Open lionel- opened 1 year ago

lionel- commented 1 year ago

The next version of dplyr will export where() and this causes a name conflict with ape::where() because you import all of dplyr and all of ape. This PR fixes this by adding an exception for ape::where().

I chose to add the exception for ape rather than dplyr because you have multiple @import dplyr statements that would need to be modified, and I preferred to reduce the number of changed lines here.

We plan to release dplyr 1.1.0 on January 27. A pre-emptive fix release of ggmuller would be helpful, if possible. Thanks!