We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14016a1 + d88a134 commit bcb2391Copy full SHA for bcb2391
docs/Project.toml
@@ -1,4 +1,5 @@
1
[deps]
2
+Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
3
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
4
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
5
GaussianMixtures = "cc18c42c-b769-54ff-9e2a-b28141a64aae"
docs/make.jl
@@ -1,3 +1,13 @@
+using Conda
+if Base.VERSION <= v"1.6.2"
+ # GLIBCXX_3.4.26
+ Conda.add("libstdcxx-ng>=3.4,<9.2", channel="conda-forge")
+else
6
+ # GLIBCXX_3.4.29
7
+ # checked up to v1.8.0
8
+ Conda.add("libstdcxx-ng>=3.4,<11.4", channel="conda-forge")
9
+end
10
+
11
using Pkg
12
using Documenter
13
using ScikitLearn
0 commit comments