From b0435420073fd8c8b2fddd7c1fb72df62c6bfc98 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Tue, 16 May 2017 17:32:00 -0700 Subject: [PATCH 1/4] Update CI URLs to point to new caching infrastructure --- appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 59891ad..e21530d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ environment: matrix: - - JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" + - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" branches: only: @@ -14,9 +14,10 @@ notifications: on_build_status_changed: false install: + - ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12" # Download most recent Julia Windows binary - ps: (new-object net.webclient).DownloadFile( - $("http://s3.amazonaws.com/"+$env:JULIAVERSION), + $env:JULIA_URL, "C:\projects\julia-binary.exe") # Run installer silently, output to C:\projects\julia - C:\projects\julia-binary.exe /S /D=C:\projects\julia From 6b7e88d46513714de9a003b883592871a8ed085f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Poisot?= Date: Mon, 17 Jul 2017 11:32:33 -0400 Subject: [PATCH 2/4] Attempt to solve #102 --- src/writers.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/writers.jl b/src/writers.jl index da1e7af..ccc261f 100644 --- a/src/writers.jl +++ b/src/writers.jl @@ -65,8 +65,8 @@ function convert_doc(doc::WeaveDoc, format::NotebookOutput) kernelspec = Dict() kernelspec["language"] = "julia" - kernelspec["name"] = "julia-0.5" - kernelspec["display_name"] = "Julia 0.5.0" + kernelspec["name"] = "julia-$(VERSION.major).$(VERSION.minor)" + kernelspec["display_name"] = "Julia $(VERSION.major).$(VERSION.minor).$(VERSION.patch)" metadata["kernelspec"] = kernelspec @@ -74,7 +74,7 @@ function convert_doc(doc::WeaveDoc, format::NotebookOutput) language_info["file_extension"] = ".jl" language_info["mimetype"] = "application/julia" language_info["name"]= "julia" - language_info["version"] = "0.5.0" + language_info["version"] = "$(VERSION.major).$(VERSION.minor).$(VERSION.patch)" metadata["language_info"] = language_info cells = [] From 3f42023b42777b6c9373b77979f0b9bffe98013d Mon Sep 17 00:00:00 2001 From: Fredrik Bagge Carlson Date: Mon, 30 Oct 2017 09:40:31 +0100 Subject: [PATCH 3/4] Replace usepackage graphics with graphicx I had issues with the chunk option `out_width` unless I replaced the use of the old `graphics` package with the newer `graphicx` See https://tex.stackexchange.com/questions/23075/packages-graphics-vs-graphicx for additional info --- templates/julia_tex.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/julia_tex.tpl b/templates/julia_tex.tpl index 63426e8..52fc7a3 100644 --- a/templates/julia_tex.tpl +++ b/templates/julia_tex.tpl @@ -3,7 +3,7 @@ \usepackage[a4paper,text={16.5cm,25.2cm},centering]{geometry} \usepackage{lmodern} \usepackage{amssymb,amsmath} -\usepackage{graphics} +\usepackage{graphicx} \usepackage{microtype} \usepackage{hyperref} \setlength{\parindent}{0pt} From 95008e5704fe882145599541a8e62e5535bd3f5d Mon Sep 17 00:00:00 2001 From: Matti Pastell Date: Fri, 22 Dec 2017 13:26:21 +0200 Subject: [PATCH 4/4] Drop Julia 0.5 support Drop Julia 0.5 support --- REQUIRE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/REQUIRE b/REQUIRE index 2d83700..a70658d 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,4 +1,4 @@ -julia 0.5 +julia 0.6 ArgParse JLD JSON