Skip to content

Commit af6e69f

Browse files
committed
Replace non-3.7 installations of python with 3.7
1 parent 2b1f4c6 commit af6e69f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/ReactionMechanismSimulator.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
module ReactionMechanismSimulator
22
using PyCall
3+
if PyCall.pyversion.major != 3 || PyCall.pyversion.minor != 7
4+
using Conda
5+
Conda.add("python==3.7")
6+
end
37
push!(PyVector(pyimport("sys")["path"]), "")
48
const Chem = PyNULL()
59
const molecule = PyNULL()

0 commit comments

Comments
 (0)