From 26a56c3105c7f45f4b8ca7f1be125895cce368d1 Mon Sep 17 00:00:00 2001 From: john verzani Date: Thu, 27 Jul 2017 15:48:52 -0400 Subject: [PATCH 1/4] Update appveyor.yml add testing on v0.6 with 32 and 64 bit. --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index c0464e36..5a846a42 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,8 @@ environment: matrix: - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe" - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" + - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe" + - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe" - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe" - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe" From 8c3c07acb7c14b5c942ad966485a01ccae4b046c Mon Sep 17 00:00:00 2001 From: john verzani Date: Thu, 27 Jul 2017 16:56:17 -0400 Subject: [PATCH 2/4] Update appveyor.yml remove v0.5 testing from appveyor --- appveyor.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5a846a42..cc07d84a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,5 @@ environment: matrix: - - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe" - - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe" - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe" - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe" From 9f0117d914c3a558a08b800a7fd58f2fd64f87c1 Mon Sep 17 00:00:00 2001 From: john verzani Date: Tue, 1 Aug 2017 15:48:12 -0400 Subject: [PATCH 3/4] Update README.md add appveyor badge. (But how does appveyor get run, as it doesn't seem to be current) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b88fe561..72a82007 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Plots [![Build Status](https://travis-ci.org/JuliaPlots/Plots.jl.svg?branch=master)](https://travis-ci.org/JuliaPlots/Plots.jl) +[![Build status](https://ci.appveyor.com/api/projects/status/github/tbreloff/plots.jl?branch=master&svg=true)](https://ci.appveyor.com/project/tbreloff/plots-jl) [![Join the chat at https://gitter.im/tbreloff/Plots.jl](https://badges.gitter.im/tbreloff/Plots.jl.svg)](https://gitter.im/tbreloff/Plots.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) From 25774ee4c3ff86e706ec0dd5b8e9ae6ba81498e9 Mon Sep 17 00:00:00 2001 From: "Michael K. Borregaard" Date: Mon, 21 Aug 2017 10:19:47 +0200 Subject: [PATCH 4/4] Turn off gui for pyplot in ijulia --- src/output.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/output.jl b/src/output.jl index 14f15c30..41cc9d0c 100644 --- a/src/output.jl +++ b/src/output.jl @@ -278,6 +278,7 @@ using Requires show(io, MIME("text/html"), plt) end + ENV["MPLBACKEND"] = "Agg" set_ijulia_output("text/html") end end