Skip to content

Commit 58fa17e

Browse files
authored
fix: iso format mismatch in fits_to_df
fix: iso format mismatch in fits_to_df
2 parents 5ad691b + 6452da8 commit 58fa17e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

prose/io/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def fits_to_df(
133133
df_list.append(
134134
dict(
135135
path=i,
136-
date=_telescope.date(header).isoformat(),
136+
date=_telescope.date(header),
137137
telescope=_telescope.name,
138138
type=_telescope.image_type(header),
139139
target=header.get(_telescope.keyword_object, ""),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "prose"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
description = "Modular image processing pipelines for Astronomy"
55
authors = ["Lionel Garcia"]
66
license = "MIT"

0 commit comments

Comments
 (0)