Skip to content

Commit 00210d2

Browse files
authored
Upgrade to Julia 1.3+, use artifacts (#49)
* Upgrade to Julia 1.3+, use artifacts This makes use of the new Artifacts system within Julia 1.3+. This doesn't really change any core functionality, but it will benefit from the installation improvements we are making to artifacts and binary packages in general. * Update testing versions
1 parent c513b62 commit 00210d2

5 files changed

Lines changed: 6 additions & 111 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ os:
55
- osx
66
- windows
77
julia:
8-
- 1.0
9-
- 1.1
8+
- 1.3
109
- nightly
1110
matrix:
1211
allow_failures:

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@ name = "CodecZlib"
22
uuid = "944b1d66-785c-5afd-91f1-9de20f533193"
33
license = "MIT"
44
authors = ["Kenta Sato <bicycle1885@gmail.com>"]
5-
version = "0.6.0"
5+
version = "0.7.0"
66

77
[deps]
8-
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
9-
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
108
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
9+
Zlib_jll = "83775a58-1f1d-513f-b197-d71354ab007a"
1110

1211
[compat]
13-
BinaryProvider = "0.5"
1412
TranscodingStreams = "0.9"
15-
julia = "1"
13+
julia = "1.3"
1614

1715
[extras]
1816
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
environment:
22
matrix:
3-
- julia_version: 1.0
4-
- julia_version: 1.1
3+
- julia_version: 1.3
54
- julia_version: latest
65

76
platform:

deps/build.jl

Lines changed: 0 additions & 94 deletions
This file was deleted.

src/CodecZlib.jl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,7 @@ import TranscodingStreams:
2727
initialize,
2828
finalize,
2929
splitkwargs
30-
using Libdl
31-
32-
const libzpath = joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")
33-
if !isfile(libzpath)
34-
error("CodecZlib.jl is not installed properly, run Pkg.build(\"CodecZlib\") and restart Julia.")
35-
end
36-
include(libzpath)
37-
check_deps()
30+
using Zlib_jll
3831

3932
include("libz.jl")
4033
include("compression.jl")

0 commit comments

Comments
 (0)