Skip to content

Commit

Permalink
Merge pull request #622 from spacetelescope/release_1.1.1_prep
Browse files Browse the repository at this point in the history
Release prep for 1.1.1.

Note, merging after discussion with @obi-wan76 earlier tonight. (checks don't show as completed because latest was 'ci skip' for a docs-only change; tests passed earlier. )
  • Loading branch information
mperrin authored Dec 14, 2022
2 parents 156a5f2 + b7cf7e7 commit 7b58f9e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Get WebbPSF Data
run: | # Get WebbPSF data files (just a subset of the full dataset!) and set up environment variable
wget https://stsci.box.com/shared/static/963l3m4hcrpc29bqxq68ilcsfgfqwiyc.gz -O /tmp/minimal-webbpsf-data.tar.gz
wget https://stsci.box.com/shared/static/n1fealx9q0m6sdnass6wnyfikvxtc0zz.gz -O /tmp/minimal-webbpsf-data.tar.gz
tar -xzvf /tmp/minimal-webbpsf-data.tar.gz
echo "WEBBPSF_PATH=${{github.workspace}}/webbpsf-data" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ Installing the Required Data Files
Files containing such information as the JWST pupil shape, instrument throughputs, and aperture positions are distributed separately from WebbPSF. To run WebbPSF, you must download these files and tell WebbPSF where to find them using the ``WEBBPSF_PATH`` environment variable.

1. Download the following file: `webbpsf-data-1.1.0.tar.gz <https://stsci.box.com/shared/static/ntb71b3uusf1kzgf9bss0hzbreoja5gg.gz>`_ [approx. 80 MB]
2. Untar ``webbpsf-data-1.1.0.tar.gz`` into a directory of your choosing.
1. Download the following file: `webbpsf-data-1.1.1.tar.gz <https://stsci.box.com/shared/static/t90gqazqs82d8nh25249oq1obbjfstq8.gz>`_ [approx. 80 MB]
2. Untar ``webbpsf-data-1.1.1.tar.gz`` into a directory of your choosing.
3. Set the environment variable ``WEBBPSF_PATH`` to point to that directory. e.g. ::

export WEBBPSF_PATH=$HOME/data/webbpsf-data
Expand Down
14 changes: 14 additions & 0 deletions docs/relnotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@ See https://github.com/spacetelescope/webbpsf/issues for currently open issues a
Version History and Change Log
-------------------------------

Version 1.1.1
=============
*2022 December 14*

Minor bug fix release and improvements in JWST wavefront trending plots.

**James Webb Space Telescope improvements**:

* Fix a units issue and filename inconsistency in one of the data files for NIRCam wavefront error at the wavefront sensing field point. (:issue:`612`, :pr:`613:` by :user:`mperrin`, :user:`obi-wan76`)
* Improvements in OTE wavefront trending plots and phase decomposition tools (:pr:`598` by :user:`kulpster85`, :pr:`599`, :pr:`601` by :user:`mperrin`, :pr:`603` by :user:`Skyhawk172:`,
:pr:`621` by :user:`obi-wan76`)
* Bug fixes for OTE field dependence flag (:pr:`595` by :user:`mperrin`)
* Updates various package dependencies to upstream latest versions.


Version 1.1.0
=============
Expand Down
2 changes: 1 addition & 1 deletion webbpsf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class UnsupportedPythonError(Exception):
# required. If changes to the code and data mean WebbPSF won't work
# properly with an old data package, increment this version number.
# (It's checked against $WEBBPSF_DATA/version.txt)
DATA_VERSION_MIN = (1, 1, 0)
DATA_VERSION_MIN = (1, 1, 1)


class Conf(_config.ConfigNamespace):
Expand Down

0 comments on commit 7b58f9e

Please sign in to comment.