Skip to content

Commit 294cb24

Browse files
Drop Julia < 1.3 (#288)
1 parent 5327d5c commit 294cb24

File tree

4 files changed

+1
-69
lines changed

4 files changed

+1
-69
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
/deps/build.log
66
/deps/usr
77
CMakeLists.txt.user
8-
/deps/deps.jl
98
/test/test.sqlite
109
/test/test2.sqlite
1110
/docs/build
1211
.vscode
1312

14-
Manifest.toml
13+
Manifest.toml

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ authors = ["Jacob Quinn <[email protected]>", "JuliaData Contributors"]
44
version = "1.4.1"
55

66
[deps]
7-
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
87
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
98
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
109
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
@@ -16,7 +15,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1615
WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5"
1716

1817
[compat]
19-
BinaryProvider = "0.5"
2018
DBInterface = "2.5"
2119
SQLite_jll = "3"
2220
Tables = "1"

deps/build.jl

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

src/consts.jl

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
1-
if VERSION < v"1.3.0"
2-
3-
# Load libmariadb from our deps.jl
4-
const depsjl_path = joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")
5-
if !isfile(depsjl_path)
6-
error("SQLite not installed properly, run Pkg.build(\"SQLite\"), restart Julia and try again")
7-
end
8-
include(depsjl_path)
9-
10-
else
11-
121
using SQLite_jll
132

14-
end
15-
163
#Macros
174
macro OK(func)
185
:($(esc(func)) == SQLITE_OK)

0 commit comments

Comments
 (0)