Skip to content

Commit cc85b84

Browse files
committed
address review
1 parent 5d3be83 commit cc85b84

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

Project.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
name = "Quadmath"
22
uuid = "be4d8f0f-7fa4-5f49-b795-2f01399ab2dd"
3-
version = "1.0.0"
3+
version = "0.5.14"
44

55
[deps]
66
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
77
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
88
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
9-
10-
[weakdeps]
119
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1210

13-
[extensions]
14-
QuadMathSpecialFunctionsExt = ["SpecialFunctions"]
15-
1611
[compat]
1712
Aqua = "0.6"
1813
Compat = "4.4"
1914
Printf = "<0.0.1, 1"
2015
Random = "<0.0.1, 1"
2116
SpecialFunctions = "2.0"
2217
Test = "<0.0.1, 1"
23-
julia = "1.10"
18+
julia = "1.6"
19+
20+
[extensions]
21+
QuadmathSpecialFunctionsExt = ["SpecialFunctions"]
2422

2523
[extras]
2624
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
@@ -29,3 +27,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2927

3028
[targets]
3129
test = ["Aqua", "Test", "SpecialFunctions"]
30+
31+
[weakdeps]
32+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"

ext/QuadMathSpecialFunctionsExt.jl renamed to ext/QuadmathSpecialFunctionsExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module QuadMathSpecialFunctionsExt
1+
module QuadmathSpecialFunctionsExt
22

33
using Quadmath: libquadmath, Float128, Cfloat128, @quad_ccall
44
import SpecialFunctions

src/Quadmath.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,4 +628,7 @@ show(io::IO, b::Float128) = print(io, string(b))
628628

629629
include("printf.jl")
630630

631+
if !isdefined(Base, :get_extension)
632+
include("../ext/QuadmathSpecialFunctionsExt.jl")
633+
end
631634
end # module Quadmath

0 commit comments

Comments
 (0)