-
Notifications
You must be signed in to change notification settings - Fork 17
Update to Julia v0.6 #32
New issue
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
Conversation
use readbytes!() since readbytes() no longer available
8b40732
to
3d2b5ff
Compare
v0.6 tests are ok; fails on nightly due to DataFrames |
REQUIRE
Outdated
DataFrames 0.7 | ||
DataArrays 0.3 | ||
julia 0.6 | ||
DataFrames 0.10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this release really needed? Not that it makes a big difference, but previous versions should also work (if they were ported to 0.6).
src/convert.jl
Outdated
@@ -40,6 +40,10 @@ function DataArrays.data(ri::RIntegerVector) | |||
return PooledDataArray(DataArrays.RefArray(refs), pool) | |||
end | |||
|
|||
# convert R logical vector (uses Int32 to store values) into Vector{Bool[?]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vector{Bool[?]}
isn't completely correct, for now it's just DataVector{Bool}
. Same in the release notes.
I've set |
939c57b
to
54d6e2b
Compare
Cherry-picked from #28: update to Julia v0.6 (support for prior versions dropped), excluding the migration to DataFrames v0.11/CategoricalArrays/Nulls + minor tweaks.
I tried to make the commits atomic, so no squashing is required.
It would allow merging #31.