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 e84516c commit 53e1ab6Copy full SHA for 53e1ab6
deps/build.jl
@@ -1,9 +1,13 @@
1
using PyCall
2
using Conda
3
packages = Conda._installed_packages()
4
-if !("rmg" in packages) && !("rmgmolecule" in packages) && (PyCall.pyversion.major != 3 || PyCall.pyversion.minor != 8)
+if !("rmg" in packages) && !("rmgmolecule" in packages) && (PyCall.pyversion.major != 3 || PyCall.pyversion.minor != 7)
5
const Pkg = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
6
- Conda.add("python=3.8")
+ Conda.rm("mamba")
7
+ Conda.add("conda=4")
8
+ Conda.add("mamba")
9
+ Conda.update()
10
+ Conda.add("python=3.7")
11
try
12
Conda.rm("numpy") #get around MKL problem
13
catch e
0 commit comments