Skip to content

Commit 0870eec

Browse files
committed
Attempt to not have CondaPkg and specify channel instead
1 parent 888d561 commit 0870eec

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CondaPkg.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

deps/build.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@ using CondaPkg
22
using PythonCall
33
packages = keys(CondaPkg.current_packages())
44
if !("rmg" in packages) && !("rmgmolecule" in packages)
5-
ENV["JULIA_CONDAPKG_ENV"] = abspath("../rms_env")
65
CondaPkg.add("rmgmolecule"; version=">=0.3.0", channel="mjohnson541")
76
end
87
if !(v"3.7" <= PythonCall.C.python_version() && PythonCall.C.python_version() <= v"3.9")
98
CondaPkg.add("python"; version="3.9")
109
end
1110
if !("matplotlib" in packages)
12-
CondaPkg.add("matplotlib")
11+
CondaPkg.add("matplotlib"; channel="conda-forge")
1312
end
1413
if !("rdkit" in packages)
15-
CondaPkg.add("rdkit")
14+
CondaPkg.add("rdkit"; channel="conda-forge")
1615
end
1716
if !("pydot" in packages)
18-
CondaPkg.add("pydot")
17+
CondaPkg.add("pydot"; channel="anaconda")
1918
end
2019
const Pkg = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
2120
Pkg.build("PythonCall")

0 commit comments

Comments
 (0)