File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,22 @@ using CondaPkg
2
2
using PythonCall
3
3
packages = keys (CondaPkg. current_packages ())
4
4
if ! (" rmg" in packages) && ! (" rmgmolecule" in packages)
5
- CondaPkg. add (" rmgmolecule" ; version= " >=0.3.0" , channel= " mjohnson541" )
5
+ CondaPkg. add_channel (" defaults" )
6
+ CondaPkg. add_channel (" conda-forge" )
7
+ CondaPkg. add_channel (" mjohnson541" )
8
+ CondaPkg. add (" rmgmolecule" ; version= " >=0.3.0" )
6
9
end
7
10
if ! (v " 3.7" <= PythonCall. C. python_version () && PythonCall. C. python_version () <= v " 3.9" )
8
11
CondaPkg. add (" python" ; version= " 3.9" )
9
12
end
10
13
if ! (" matplotlib" in packages)
11
- CondaPkg. add (" matplotlib" ; channel = " conda-forge " )
14
+ CondaPkg. add (" matplotlib" )
12
15
end
13
16
if ! (" rdkit" in packages)
14
- CondaPkg. add (" rdkit" ; channel = " conda-forge " )
17
+ CondaPkg. add (" rdkit" )
15
18
end
16
19
if ! (" pydot" in packages)
17
- CondaPkg. add (" pydot" ; channel = " anaconda " )
20
+ CondaPkg. add (" pydot" )
18
21
end
19
22
const Pkg = Base. require (Base. PkgId (Base. UUID (" 44cfe95a-1eb2-52ea-b672-e2afdf69b78f" ), " Pkg" ))
20
23
Pkg. build (" PythonCall" )
You can’t perform that action at this time.
0 commit comments