Skip to content

Commit c213a08

Browse files
committed
restore v1.5 with lower bounds on compat versions
1 parent b04ac76 commit c213a08

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

Project.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
name = "QMCGenerators"
22
uuid = "fcae8fc2-2969-4f4b-b6c9-a95746d81969"
33
authors = ["alegresor [email protected]"]
4-
version = "1.5.1"
4+
version = "1.4.0"
55

66
[deps]
7+
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
78
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
9+
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
810
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
911

1012
[compat]
13+
CairoMakie = ">=0.10"
1114
DelimitedFiles = ">=1"
15+
LaTeXStrings = ">=1"
1216
julia = ">=1"
1317

1418
[extras]
1519
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
16-
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
17-
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
1820

1921
[targets]
20-
test = ["Test"]
22+
test = ["Test"]

docs/Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
33
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
44
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
5-
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
65
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
76
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
87

98
[compat]
10-
Documenter = "0.27"
9+
Documenter = "0.27"

src/QMCGenerators.jl

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ module QMCGenerators
22

33
import DelimitedFiles: readdlm
44
import Random: Xoshiro
5+
import CairoMakie
6+
using LaTeXStrings
57

68
include("util.jl")
7-
export spawn
9+
export bitreverse,spawn
810

911
include("digitalseqb2g_default_gmatrix.jl")
1012
include("digitalseqb2g.jl")
@@ -20,13 +22,7 @@ export IIDU01Seq
2022
include("common.jl")
2123
export Reset!,Next,NextR,NextBinary,FirstLinear,BinaryToFloat64,NextBinary,FirstLinearBinary,FirstRLinear
2224

23-
try
24-
import CairoMakie
25-
using LaTeXStrings
26-
include("plots.jl")
27-
export qmcscatter!,JULIA4LOGOCOLORS
28-
catch
29-
nothing;
30-
end
25+
include("plots.jl")
26+
export qmcscatter!,JULIA4LOGOCOLORS
3127

32-
end
28+
end

0 commit comments

Comments
 (0)