-
Notifications
You must be signed in to change notification settings - Fork 52
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
Drop v0.6 support #124
Drop v0.6 support #124
Conversation
Current failure is JuliaIO/ImageMagick.jl#130. |
f68e7bf
to
9e38142
Compare
* This is an attempt to resolve the current zlib issues
* ImageMagick is imported on demand by FileIO * If VideoIO is imported first, it loads ffmpeg/libav libraries. These libraries may be linked against the system libz. If they are, and ImageMagick is loaded later, it attemtps to use the already loaded version of libz, and may fail to load because it requires a later version.
bc82c12
to
31d7d07
Compare
Codecov Report
@@ Coverage Diff @@
## master #124 +/- ##
=========================================
Coverage ? 89.22%
=========================================
Files ? 21
Lines ? 232
Branches ? 0
=========================================
Hits ? 207
Misses ? 25
Partials ? 0
Continue to review full report at Codecov.
|
* For some reason, the value scaling of the images used to compare the first (non-blank) video frame has changed
* The function is testing whether the last read video frame was blank, so it was misnamed!
* This is a separate commit which just contains formatting changes for files in the next commit, to make reviewing easier
* Previously, we were using findfirst to get the field position of a particular struct element. * Our use of findfirst was deprectated, so fix the deprecation * Additionally, reduce code duplication with a function, fieldposition, which returns the position of the field within a struct
* In build.jl, we were assigning variable names inside of an array initialization * This is no longer allowed in Julia v1.0
d222003
to
ff79e81
Compare
* Drop testing on v0.7 (tests pass on v1.0, and therefore should pass on v0.7) * Don't allow nightly to fail (yet)
941fac9
to
7f3586a
Compare
Tests pass! For anyone following at home, this is still somewhat limited:
Going to merge and tag, and start work on on other issues. |
No description provided.