Skip to content

Commit

Permalink
DOC: Move change log
Browse files Browse the repository at this point in the history
TST: Fix flake8 warning
  • Loading branch information
pllim committed May 24, 2022
1 parent 98a0108 commit 7fc2381
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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]

Expand All @@ -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]

Expand Down
5 changes: 3 additions & 2 deletions synphot/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 7fc2381

Please sign in to comment.