Skip to content

Commit

Permalink
About to release v0.7.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed May 29, 2020
1 parent 379e140 commit ea1330d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,7 @@
v0.7.11
=======
- Support for newer version of PuLP when running test suite.

v0.7.10
=======
- Added support for newer SymPy version.
Expand Down
5 changes: 5 additions & 0 deletions chempy/tests/test_chemistry.py
Expand Up @@ -3,6 +3,7 @@

from functools import reduce
from operator import attrgetter, add
import sys

import pytest

Expand All @@ -15,6 +16,10 @@
Equilibrium, balance_stoichiometry
)

if sys.version_info < (3, 6, 0):
class ModuleNotFoundError(ImportError):
pass


@requires('numpy')
def test_equilibrium_quotient():
Expand Down

0 comments on commit ea1330d

Please sign in to comment.