Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
Expand Down
1 change: 1 addition & 0 deletions generate/generate_fgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
aperture.DDCName = 'not set'
aperture.Comment = None
aperture.UseAfterDate = '2014-01-01'
aperture.OSS_Version = '8.4'

if AperName not in ['J-FRAME', 'V-FRAME']:

Expand Down
1 change: 1 addition & 0 deletions generate/generate_miri.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ def extract_ifu_data(aperture_table):
aperture.DDCName = 'not set'
aperture.Comment = None
aperture.UseAfterDate = '2014-01-01'
aperture.OSS_Version = '8.4'

master_aperture_name = 'MIRIM_FULL'
# process master apertures
Expand Down
2 changes: 2 additions & 0 deletions generate/generate_nircam.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@

aperture.complement()
aperture.DDCName = "NOT_SET"
aperture.Comment = None
aperture.UseAfterDate = "2014-01-01"
aperture.OSS_Version = "8.4"

aperture_dict[AperName] = aperture

Expand Down
1 change: 1 addition & 0 deletions generate/generate_niriss.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
aperture.complement()
aperture.Comment = None
aperture.UseAfterDate = '2014-01-01'
aperture.OSS_Version = '8.4'
aperture_dict[AperName] = aperture

# sort SIAF entries in the order of the aperture definition file
Expand Down
1 change: 1 addition & 0 deletions generate/generate_nirspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,7 @@ def rows(pcfName, new_pcf_format=False):
aperture.DDCName = 'not set'
aperture.Comment = None
aperture.UseAfterDate = '2014-01-01'
aperture.OSS_Version = '8.4'

if aperture.AperType not in ['TRANSFORM']:
aperture.AperShape = siaf_detector_parameters['AperShape'][0]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"astropy >= 6.0.0, < 7.0.0",
"astropy >= 7.0.0, < 8.0.0",
"lxml >= 6.0.0, < 7.0.0",
"matplotlib >= 3.10.0, < 4.0.0",
"numpy >= 2.0.0, < 3.0.0",
Expand All @@ -24,7 +24,7 @@ license-files = ["LICENSE.md"]
dynamic = [
"version",
]
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.readme]
file = "README.md"
Expand Down
171 changes: 86 additions & 85 deletions pysiaf/source_data/siaf_xml_field_format.txt

Large diffs are not rendered by default.

Loading