From 458b29733a2ac6198bfadab904609398ef30c3cb Mon Sep 17 00:00:00 2001 From: James Kerns Date: Tue, 5 May 2020 20:18:42 -0500 Subject: [PATCH] bump to 2.3.1 --- docs/source/changelog.rst | 9 +++++++++ docs/source/conf.py | 2 +- pylinac/__init__.py | 4 ++-- setup.py | 2 +- tests_basic/test_planar_imaging.py | 5 +++++ 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 2ab7c23eb..388acbb43 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,15 @@ Changelog ========= + +v 2.3.1 +------- + +Bug Fixes +^^^^^^^^^ + +* `#281 `_ The ct module had a wrong usage of the new MTF module that caused a break. + v 2.3.0 ------- diff --git a/docs/source/conf.py b/docs/source/conf.py index bc8e259b2..ee0fd442f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -76,7 +76,7 @@ # The short X.Y version. version = '2.3' # The full version, including alpha/beta/rc tags. -release = '2.3.0' +release = '2.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pylinac/__init__.py b/pylinac/__init__.py index a7946022d..050b78c99 100644 --- a/pylinac/__init__.py +++ b/pylinac/__init__.py @@ -1,8 +1,8 @@ import sys -__version__ = '2.3.0' -__version_info__ = (2, 3, 0) +__version__ = '2.3.1' +__version_info__ = (2, 3, 1) # check python version if sys.version_info[0] < 3 or sys.version_info[1] < 6: diff --git a/setup.py b/setup.py index 65668bf13..9efbe458b 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = '2.3.0' +__version__ = '2.3.1' setup( diff --git a/tests_basic/test_planar_imaging.py b/tests_basic/test_planar_imaging.py index d2b76e5cd..06e70d914 100644 --- a/tests_basic/test_planar_imaging.py +++ b/tests_basic/test_planar_imaging.py @@ -58,6 +58,7 @@ def test_results(self): class LeedsDemo(PlanarPhantomMixin, TestCase): klass = LeedsTOR + mtf_50 = 0.1 def test_demo(self): LeedsTOR.run_demo() # shouldn't raise @@ -65,10 +66,12 @@ def test_demo(self): class LeedsCCW(PlanarPhantomMixin, TestCase): klass = LeedsTOR + mtf_50 = 1.5 file_path = ['Leeds_ccw.dcm'] class SIQC3Demo(PlanarPhantomMixin, TestCase): + klass = StandardImagingQC3 mtf_50 = 0.53 def test_demo(self): @@ -76,11 +79,13 @@ def test_demo(self): class SIQC3_1(PlanarPhantomMixin, TestCase): + klass = StandardImagingQC3 file_path = ['QC3 2.5MV.dcm'] mtf_50 = 0.68 class SIQC3_2(PlanarPhantomMixin, TestCase): + klass = StandardImagingQC3 file_path = ['QC3 2.5MV 2.dcm'] mtf_50 = 0.68