Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STIPS 2.2.2 Pull Request #188

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion setup.cfg
ojustino marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading