Skip to content

Commit

Permalink
Fix ruamel_yaml for Travis CI on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Aug 15, 2019
1 parent e24805d commit 1b9629e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion interfaces/cython/cantera/test/test_reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@

import numpy as np
from .utilities import unittest
from ruamel.yaml import YAML
try:
from ruamel.yaml import YAML
except:
from ruamel_yaml import YAML

import cantera as ct
from . import utilities
Expand Down

0 comments on commit 1b9629e

Please sign in to comment.