From e8403c2d64395f77240f878d66d148fb99cdb05e Mon Sep 17 00:00:00 2001 From: Eunkyu Han Date: Mon, 16 Dec 2024 13:05:20 -0500 Subject: [PATCH 1/2] Commits for v2.2.2 release --- CHANGES.rst | 4 ++++ docs/release.rst | 1 + environment.yml | 2 +- environment_dev.yml | 2 +- ref_data/retrieve_stips_data.py | 2 +- setup.cfg | 2 +- stips/__init__.py | 2 +- 7 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 84458bd..b8ee593 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 diff --git a/docs/release.rst b/docs/release.rst index ae050b3..d74fb5e 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -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``? diff --git a/environment.yml b/environment.yml index fa1c48d..40a6a0b 100644 --- a/environment.yml +++ b/environment.yml @@ -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 diff --git a/environment_dev.yml b/environment_dev.yml index 3072adb..6b1035c 100644 --- a/environment_dev.yml +++ b/environment_dev.yml @@ -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 diff --git a/ref_data/retrieve_stips_data.py b/ref_data/retrieve_stips_data.py index 94629ce..0346a80 100644 --- a/ref_data/retrieve_stips_data.py +++ b/ref_data/retrieve_stips_data.py @@ -6,7 +6,7 @@ # export WEBBPSF_PATH="/ref_data/webbpsf-data" # export PYSYN_CDBS="/ref_data/grp/redcat/trds" # export pandeia_refdata="/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 diff --git a/setup.cfg b/setup.cfg index 424d90a..eec36fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/stips/__init__.py b/stips/__init__.py index 77fe55e..21f2322 100755 --- a/stips/__init__.py +++ b/stips/__init__.py @@ -4,7 +4,7 @@ __all__ = ['observation_module', 'scene_module'] -__version__ = "2.2.1" +__version__ = "2.2.2" version = __version__ from .utilities import SetupDataPaths From a12e4a4c0bae00b7ae315de6b4587b2df93537de Mon Sep 17 00:00:00 2001 From: Eunkyu Han Date: Mon, 16 Dec 2024 14:02:08 -0500 Subject: [PATCH 2/2] Updating version number in setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index eec36fc..4891e8f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 = york@stsci.edu description = STIPS is the Space Telescope Imaging Product Simulator.