Skip to content
Closed
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 autoconf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from .json_prior.config import path_for_class
from .json_prior.config import JSONPriorConfig

__version__ = "2025.5.7.3"
__version__ = "2025.5.7.12"
4 changes: 2 additions & 2 deletions autoconf/fitsable.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def ndarray_via_fits_from(

Examples
--------
array_2d = numpy_array_2d_via_fits_from(file_path='/path/to/file/filename.fits', hdu=0)
array_2d = ndarray_via_fits_from(file_path='/path/to/file/filename.fits', hdu=0)
"""
hdu_list = fits.open(file_path, do_not_scale_image_data=do_not_scale_image_data)
return ndarray_via_hdu_from(hdu_list[hdu])
Expand Down Expand Up @@ -268,7 +268,7 @@ def header_obj_from(file_path: Union[Path, str], hdu: int) -> Dict:

Examples
--------
array_2d = numpy_array_2d_via_fits_from(file_path='/path/to/file/filename.fits', hdu=0)
array_2d = ndarray_via_fits_from(file_path='/path/to/file/filename.fits', hdu=0)
"""
hdu_list = fits.open(file_path)
return hdu_list[hdu].header
Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[aliases]
test=pytest
test=pytest

[metadata]
license_file = LICENSE