Skip to content

Commit 7d30db8

Browse files
committed
fix syntax
1 parent c44bccc commit 7d30db8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ReactionMechanismSimulator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if !("rmg" in packages) && !("rmgmolecule" in packages)
1010
else
1111
py_version = nothing
1212
end
13-
if py_version === nothing || !(v"3.7" <= py_version) && py_version <= v"3.9")
13+
if py_version === nothing || !(v"3.7" <= py_version && py_version <= v"3.9")
1414
@info "python version was not in 3.7-3.9 changing python version"
1515
CondaPkg.add("python"; version="3.9")
1616
end

src/rmstest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if !("rmg" in packages) && !("rmgmolecule" in packages)
1111
else
1212
py_version = nothing
1313
end
14-
if py_version === nothing || !(v"3.7" <= py_version) && py_version <= v"3.9")
14+
if py_version === nothing || !(v"3.7" <= py_version && py_version <= v"3.9")
1515
@info "python version was not in 3.7-3.9 changing python version"
1616
CondaPkg.add("python"; version="3.9")
1717
end

0 commit comments

Comments
 (0)