Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mperrin committed May 30, 2018
1 parent 787065d commit 59b2865
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/relnotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Version History and Change Log
Version 0.7.0
=============

*2018 June 1*
*2018 May 30*


Note, when upgrading to this version you will need to update to the latest data files as well. This is
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
builtins._ASTROPY_PACKAGE_NAME_ = PACKAGENAME

# VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386)
VERSION = '0.7.0rc1'
VERSION = '0.7.0'

# Indicates if this version is a release version
RELEASE = 'dev' not in VERSION
Expand Down Expand Up @@ -116,7 +116,7 @@
'poppy>=0.6.1',
'astropy>=1.2.0',
'jwxml>=0.3.0',
'pysiaf', 'six',
'pysiaf>=0.1.8', 'six',
'pytest' # unlisted requirement for pysiaf - see https://github.com/spacetelescope/pysiaf/issues/16
# Remove this requirement once that issue is addressed.
],
Expand Down
4 changes: 2 additions & 2 deletions webbpsf/webbpsf_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ class JWInstrument(SpaceTelescopeInstrument):
telescope : name of telescope
pupilopd : filename or FITS file object
include_si_wfe : boolean (default: False)
include_si_wfe : boolean (default: True)
Should SI internal WFE be included in models? Requires
the presence of ``si_zernikes_isim_cv3.fits`` in the
``WEBBPSF_PATH``.
Expand Down Expand Up @@ -659,7 +659,7 @@ def __init__(self, *args, **kwargs):
# where is the source on the detector, in 'Science frame' pixels?
self.detector_position = (1024, 1024)

self.include_si_wfe = False
self.include_si_wfe = True
"""Should calculations include the Science Instrument internal WFE?"""
self.options['jitter'] = 'gaussian'
self.options['jitter_sigma'] = 0.007
Expand Down

0 comments on commit 59b2865

Please sign in to comment.