Skip to content

Commit 6f35449

Browse files
Merge pull request #69 from nefrathenrici/ne/widen_compat
Relax compat bounds for FastGaussQuadrature and StatsBase to improve compatibility
2 parents 9774d4f + 062f85a commit 6f35449

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

Project.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "GaussianRandomFields"
22
uuid = "e4b2fa32-6e09-5554-b718-106ed5adafe9"
3-
version = "2.2.6"
3+
version = "2.2.7"
44

55
[deps]
66
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
@@ -14,21 +14,22 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1414
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1515

1616
[compat]
17-
FastGaussQuadrature = "1"
18-
SpecialFunctions = "2"
19-
StatsBase = "0.34"
20-
RecipesBase = "1"
17+
Arpack = "0.5"
2118
FFTW = "1"
19+
FastGaussQuadrature = "0.3, 0.4, 1"
2220
Plots = "1"
23-
Arpack = "0.5"
21+
RecipesBase = "1"
22+
SpecialFunctions = "2"
2423
Statistics = "1"
24+
StatsBase = "0.33, 0.34"
2525
julia = "1"
2626

2727
[extras]
2828
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
29+
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"
2930
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3031
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
3132
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3233

3334
[targets]
34-
test = ["Random", "Test", "Suppressor", "Plots"]
35+
test = ["Random", "Test", "Suppressor", "UnicodePlots", "Plots"]

test/runtests.jl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
## runtests.jl : run all test files
2+
# Choose a backend that doesn't pull GR/Qt on Windows CI
3+
if Sys.iswindows()
4+
ENV["PLOTS_DEFAULT_BACKEND"] = "UnicodePlots"
5+
end
6+
27

38
using GaussianRandomFields
9+
410
using Plots
11+
Sys.iswindows() && unicodeplots()
12+
@info "Plots backend" backend = string(Plots.backend())
13+
514
using Random
615
using Suppressor
716
using Test

0 commit comments

Comments
 (0)