Skip to content

Commit

Permalink
Merge pull request #188 from eunkyuh/stips_han
Browse files Browse the repository at this point in the history
STIPS 2.2.2 Pull Request
  • Loading branch information
eunkyuh authored Dec 16, 2024
2 parents b5a5e60 + a12e4a4 commit 0bdc6d1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Release Notes
Version History and Change Log
------------------------------

Version 2.2.2
=============
- Updated pandeia.engine version to be >= 3.1 instead of == 3.1

Version 2.2.1
=============
- Fixed a bug on the version of STIPS in __init__.py
Expand Down
1 change: 1 addition & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ intended for a release:
* ``environment.yml``
* ``environment_dev.yml``
* ``docs/installation.rst``
* ``ret_data/retrieve_stips_data.py``

* Are you able to install the new version of STIPS locally with ``pip`` and ``conda``?

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies:

# Core Modules
- webbpsf>=1.1.1
- pandeia.engine==3.1
- pandeia.engine>=3.1
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools
Expand Down
2 changes: 1 addition & 1 deletion environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies:

# Core Modules
- webbpsf>=1.1.1
- pandeia.engine==3.1
- pandeia.engine>=3.1
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools
Expand Down
2 changes: 1 addition & 1 deletion ref_data/retrieve_stips_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# export WEBBPSF_PATH="<absolute_path_to_this_folder>/ref_data/webbpsf-data"
# export PYSYN_CDBS="<absolute_path_to_this_folder>/ref_data/grp/redcat/trds"
# export pandeia_refdata="<absolute_path_to_this_folder>/ref_data/pandeia_data-
# 1.7_roman"
# 2024.12-roman"
# 2. In the ref_data folder, run the script: python retrieve_stips_data.py

import stips
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = stips
# version should be PEP440 compatible (https://www.python.org/dev/peps/pep-0440/)
version = 2.2.1
version = 2.2.2
author = Space Telescope Science Institute
author_email = [email protected]
description = STIPS is the Space Telescope Imaging Product Simulator.
Expand All @@ -24,7 +24,7 @@ install_requires =
synphot>=1.1.1
stsynphot>=1.1.0
webbpsf>=1.1.1
pandeia.engine==3.1
pandeia.engine>=3.1
montage-wrapper
pyyaml
soc_roman_tools
Expand Down
2 changes: 1 addition & 1 deletion stips/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__all__ = ['observation_module', 'scene_module']

__version__ = "2.2.1"
__version__ = "2.2.2"
version = __version__

from .utilities import SetupDataPaths
Expand Down

0 comments on commit 0bdc6d1

Please sign in to comment.