diff --git a/README.md b/README.md index 12eccf6..66ac679 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,10 @@ Initial Release: December 2014 ## Change Log +#### 1.1.1 +- Omits test_pinned_plate from Mac OS X with Python >= 3.6 because it does not +converge in ccx + #### 1.1.0 - Adds Microsoft Azure continuous integration tests to verify that the library is working. The following environments are tested: - Windows Server 2016 (x64 and x86 architecture) diff --git a/pycalculix/version.py b/pycalculix/version.py index 6849410..a82b376 100644 --- a/pycalculix/version.py +++ b/pycalculix/version.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/tests/test_samples.py b/tests/test_samples.py index 50d15a2..14126ab 100644 --- a/tests/test_samples.py +++ b/tests/test_samples.py @@ -85,8 +85,8 @@ def test_multihole(self, file_name='multihole.py'): def test_pinned_plate(self, file_name='pinned-plate.py'): if (sys.platform == 'darwin' and sys.version_info.major == 3 and - sys.version_info.minor == 6): - # skip if OS X and Python = 3.6 + sys.version_info.minor >= 6): + # skip if OS X and Python >= 3.6 self.skipTest('skipped test because on OS X ' 'this test does not converge and fails in ccx') if sys.platform in ['linux', 'linux2']: