kbarbary / Dierckx.jl

Julia package for 1-d and 2-d splines
Other
157 stars 30 forks source link

Fix Deprecation Warnings for v0.7 #51

Closed cortner closed 6 years ago

cortner commented 6 years ago
cortner commented 6 years ago

tests fail on Travis - Mac OS X with Thebrew linkstep did not complete successfully, I am not sure how to fix this. Something. going wrong with gcc installation.

cortner commented 6 years ago

Error appveyor-windows is ERROR: LoadError: UndefVarError: JULIA_HOME not defined

cortner commented 6 years ago

I'm not sure how to fix the errors on either OSX and Windows. I can return to it, but not immediately.

kbarbary commented 6 years ago

For Windows/appveyor, in deps/build.jl replace JULIA_HOME with Sys.BINDIR (https://github.com/JuliaLang/julia/blob/master/NEWS.md#deprecated-or-removed)

kbarbary commented 6 years ago

For OS X try replacing brew install gcc with brew install gcc || brew link --overwrite gcc in .travis.yml. (Found this solution on Homebrew/brew#1742)

kbarbary commented 6 years ago

:tada: Thanks!

cortner commented 6 years ago

Thank you for the help.