Skip to content

Commit ea1330d

Browse files
committed
About to release v0.7.11
1 parent 379e140 commit ea1330d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.7.11
2+
=======
3+
- Support for newer version of PuLP when running test suite.
4+
15
v0.7.10
26
=======
37
- Added support for newer SymPy version.

chempy/tests/test_chemistry.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from functools import reduce
55
from operator import attrgetter, add
6+
import sys
67

78
import pytest
89

@@ -15,6 +16,10 @@
1516
Equilibrium, balance_stoichiometry
1617
)
1718

19+
if sys.version_info < (3, 6, 0):
20+
class ModuleNotFoundError(ImportError):
21+
pass
22+
1823

1924
@requires('numpy')
2025
def test_equilibrium_quotient():

0 commit comments

Comments
 (0)