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.1 Pull Request (v2) #180

Merged
merged 3 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Release Notes
Version History and Change Log
------------------------------

Version 2.2.1
=============
- Fixed a bug on the version of STIPS in __init__.py
- Updated WebbPSF version to be >= 1.1.1 instead of == 1.1.1
- Updated synphot>=1.1.1 and stsynphot>=1.1.0 from forced to specific version.

Version 2.2.0
=============
- Added a functionality to allow for faster simulations of extended sources.
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ STIPS Requirements

* ``pandeia>=3.1``: Exposure time calculator.

* ``webbpsf==1.1.1``: Nancy Grace Roman PSF calculator. STIPS also requires that ``poppy``, a
* ``webbpsf>=1.1.1``: Nancy Grace Roman PSF calculator. STIPS also requires that ``poppy``, a
support package used by WebbPSF, have version ``>=1.0.3``.

* ``astropy``: STIPS uses Astropy in order to:
Expand Down
2 changes: 1 addition & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ In addition to addressing any byproducts of the code review, you should be able
to answer "yes" to all of the following questions before merging a pull request
intended for a release:

* Has ``setup.cfg`` been updated to reflect the release's new version number?
* Have ``setup.cfg`` and ``stips/__init__.py`` been updated to reflect the release's new version number?

* If any dependencies have changed, have you updated them in all applicable files? These include:

Expand Down
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ dependencies:
- poppy==1.0.3

# Core Modules
- webbpsf==1.1.1
- webbpsf>=1.1.1
- pandeia.engine==3.1
- synphot==1.1.1
- stsynphot==1.1.0
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools

# Major modules
Expand Down
6 changes: 3 additions & 3 deletions environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ dependencies:
- poppy==1.0.3

# Core Modules
- webbpsf==1.1.1
- webbpsf>=1.1.1
- pandeia.engine==3.1
- synphot==1.1.1
- stsynphot==1.1.0
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools

# Major modules
Expand Down
8 changes: 4 additions & 4 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.0
version = 2.2.1
author = Space Telescope Science Institute
author_email = [email protected]
description = STIPS is the Space Telescope Imaging Product Simulator.
Expand All @@ -21,9 +21,9 @@ install_requires =
numpy
scipy
photutils
synphot==1.1.1
stsynphot==1.1.0
webbpsf==1.1.1
synphot>=1.1.1
stsynphot>=1.1.0
webbpsf>=1.1.1
pandeia.engine==3.1
montage-wrapper
pyyaml
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.1.0"
__version__ = "2.2.1"
version = __version__

from .utilities import SetupDataPaths
Expand Down
Loading