Skip to content

Commit 564facb

Browse files
committed
avoid pydot 2.0.0
use pydot 1.4.1 revert force use of pydot 3 version tweak tweak
1 parent 6fa41f8 commit 564facb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ReactionMechanismSimulator.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ if !("rmg" in packages) && !("rmgmolecule" in packages)
1717
CondaPkg.add("rmgmolecule"; version=">=0.3.0", channel="mjohnson541",resolve=false)
1818
CondaPkg.add("matplotlib", channel="conda-forge",resolve=false)
1919
CondaPkg.add("rdkit", channel="conda-forge",resolve=false)
20-
CondaPkg.add("pydot", channel="conda-forge",resolve=false)
20+
CondaPkg.add("pydot", channel="conda-forge",resolve=false,version=">=2.0")
2121
CondaPkg.resolve()
2222
else
2323
CondaPkg.add("rmgmolecule"; version=">=0.3.0", channel="mjohnson541",resolve=false)
2424
CondaPkg.add("matplotlib", channel="conda-forge",resolve=false)
2525
CondaPkg.add("rdkit", channel="conda-forge",resolve=false)
26-
CondaPkg.add("pydot", channel="conda-forge",resolve=false)
26+
CondaPkg.add("pydot", channel="conda-forge",resolve=false,version=">=2.0")
2727
CondaPkg.resolve()
2828
end
2929
end

src/rmstest.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ if !("rmg" in packages) && !("rmgmolecule" in packages)
1818
CondaPkg.add("rmgmolecule"; version=">=0.3.0", channel="mjohnson541",resolve=false)
1919
CondaPkg.add("matplotlib", channel="conda-forge",resolve=false)
2020
CondaPkg.add("rdkit", channel="conda-forge",resolve=false)
21-
CondaPkg.add("pydot", channel="conda-forge",resolve=false)
21+
CondaPkg.add("pydot", channel="conda-forge",resolve=false,version=">=2.0")
2222
CondaPkg.resolve()
2323
else
2424
CondaPkg.add("rmgmolecule"; version=">=0.3.0", channel="mjohnson541",resolve=false)
2525
CondaPkg.add("matplotlib", channel="conda-forge",resolve=false)
2626
CondaPkg.add("rdkit", channel="conda-forge",resolve=false)
27-
CondaPkg.add("pydot", channel="conda-forge",resolve=false)
27+
CondaPkg.add("pydot", channel="conda-forge",resolve=false,version=">=2.0")
2828
CondaPkg.resolve()
2929
end
3030
end

0 commit comments

Comments
 (0)