Skip to content

Commit bcb2391

Browse files
authored
Merge pull request #115 from tylerjthomas9/docs-ci-fix
Fix docs CI
2 parents 14016a1 + d88a134 commit bcb2391

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

docs/Project.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[deps]
2+
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
23
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
34
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
45
GaussianMixtures = "cc18c42c-b769-54ff-9e2a-b28141a64aae"

docs/make.jl

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
using Conda
2+
if Base.VERSION <= v"1.6.2"
3+
# GLIBCXX_3.4.26
4+
Conda.add("libstdcxx-ng>=3.4,<9.2", channel="conda-forge")
5+
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+
111
using Pkg
212
using Documenter
313
using ScikitLearn

0 commit comments

Comments
 (0)