-
Notifications
You must be signed in to change notification settings - Fork 13
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
Initial renaming for GDAL3 move. #11
Conversation
Do you see this error locally? And GDAL.jl is checked out to the right branch and built and its tests pass? |
src/utils.jl
Outdated
@@ -23,7 +23,7 @@ const GMF = Dict( | |||
function mask_flags(flags::Int32) | |||
(f.first for f in GMF if (flags & f.second) == f.second) | |||
end | |||
mask_flags(band::ArchGDAL.RasterBand) = mask_flags(GDAL.C.GDALGetMaskFlags(Ptr{Nothing}(band.ptr))) | |||
mask_flags(band::ArchGDAL.IRasterBand) = mask_flags(GDAL.gdalgetmaskflags(Ptr{Nothing}(band.ptr))) |
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.
I think ArchGDAL.AbstractRasterBand
should work fine here?
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.
Thx! That also works.
Yeah. Weird thing is, if I run a similar command in the REPL, everything works. But not when running tests. I'm going to temporarily commit my Manifest.toml and see whether the CI has the same issues. edit: same thing happens on Travis. |
as both GDAL and ArchGDAL have released new versions
Adapting to changes in:
At the moment running into: