We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c48737e commit 6a665a9Copy full SHA for 6a665a9
deps/build.jl
@@ -2,7 +2,13 @@ using PyCall
2
if PyCall.pyversion.major != 3 || PyCall.pyversion.minor != 7
3
using Conda
4
const Pkg = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
5
- Conda.add("python=3.7")
+ try
6
+ Conda.add("python=3.7")
7
+ catch e
8
+ Conda.add("conda=22")
9
10
+ end
11
+
12
try
13
Conda.rm("numpy") #get around MKL problem
14
catch e
0 commit comments