Skip to content

Commit 1b9629e

Browse files
committed
Fix ruamel_yaml for Travis CI on osx
1 parent e24805d commit 1b9629e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

interfaces/cython/cantera/test/test_reactor.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55

66
import numpy as np
77
from .utilities import unittest
8-
from ruamel.yaml import YAML
8+
try:
9+
from ruamel.yaml import YAML
10+
except:
11+
from ruamel_yaml import YAML
912

1013
import cantera as ct
1114
from . import utilities

0 commit comments

Comments
 (0)