Skip to content

Commit

Permalink
bump to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkerns committed May 6, 2020
1 parent 503a4f0 commit 458b297
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
9 changes: 9 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -3,6 +3,15 @@
Changelog
=========


v 2.3.1
-------

Bug Fixes
^^^^^^^^^

* `#281 <https://github.com/jrkerns/pylinac/issues/281>`_ The ct module had a wrong usage of the new MTF module that caused a break.

v 2.3.0
-------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions 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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = '2.3.0'
__version__ = '2.3.1'


setup(
Expand Down
5 changes: 5 additions & 0 deletions tests_basic/test_planar_imaging.py
Expand Up @@ -58,29 +58,34 @@ def test_results(self):

class LeedsDemo(PlanarPhantomMixin, TestCase):
klass = LeedsTOR
mtf_50 = 0.1

def test_demo(self):
LeedsTOR.run_demo() # shouldn't raise


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):
StandardImagingQC3.run_demo() # shouldn't raise


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

Expand Down

0 comments on commit 458b297

Please sign in to comment.