From 7fc23818e25d3dc245da7178ccafc851205c0c74 Mon Sep 17 00:00:00 2001 From: "Pey Lian Lim (Github)" <2090236+pllim@users.noreply.github.com> Date: Tue, 24 May 2022 17:12:58 -0400 Subject: [PATCH] DOC: Move change log TST: Fix flake8 warning --- CHANGES.rst | 5 +++-- synphot/compat.py | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 54f06d5..f7cf348 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,9 @@ 1.2.0 (unreleased) ================== +- New ``filter_parameterization`` subpackage to handle filter parameterization, + adapted from ``tynt`` package written by Brett Morris. [#257] + - Dropped support for Python 3.6 and 3.7. Minimum supported Python version is now 3.8. [#330] @@ -14,8 +17,6 @@ 1.1.0 (2021-06-23) ================== -- New ``filter_parameterization`` subpackage to handle filter parameterization, - adapted from ``tynt`` package written by Brett Morris. [#257] - ``synphot.synphot_utils`` C-extension is no longer optional. Your installation will fail if it cannot build. [#297] diff --git a/synphot/compat.py b/synphot/compat.py index abefbe9..c72c9d7 100644 --- a/synphot/compat.py +++ b/synphot/compat.py @@ -19,8 +19,9 @@ else: HAS_DUST_EXTINCTION = True -__all__ = ['ASTROPY_LT_5_0', 'ASTROPY_LT_4_3', 'ASTROPY_LT_4_1', 'NUMPY_LT_1_17', - 'ASTROPY_LT_4_0', 'HAS_SPECUTILS', 'HAS_DUST_EXTINCTION'] +__all__ = ['ASTROPY_LT_5_0', 'ASTROPY_LT_4_3', 'ASTROPY_LT_4_1', + 'ASTROPY_LT_4_0', 'NUMPY_LT_1_17', 'HAS_SPECUTILS', + 'HAS_DUST_EXTINCTION'] ASTROPY_LT_5_0 = not minversion(astropy, '4.99') # astropy<5 but includes 5.0.dev # noqa ASTROPY_LT_4_3 = not minversion(astropy, '4.3')