Skip to content

Commit

Permalink
v1.13.3
Browse files Browse the repository at this point in the history
version 1.13.3
  • Loading branch information
thusser authored May 10, 2024
2 parents c532dd3 + 41c540e commit b769fb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pyobs/robotic/lco/taskarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,11 @@ async def get_schedulable_blocks(self) -> List[ObservingBlock]:

# target
t = cfg["target"]
target = SkyCoord(t["ra"] * u.deg, t["dec"] * u.deg, frame=t["type"].lower())
if "ra" in t and "dec" in t:
target = SkyCoord(t["ra"] * u.deg, t["dec"] * u.deg, frame=t["type"].lower())
else:
log.warning("Unsupported coordinate type.")
continue

# constraints
c = cfg["constraints"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "pyobs-core"
packages = [{ include = "pyobs" }]
version = "1.13.2"
version = "1.13.3"
description = "robotic telescope software"
authors = ["Tim-Oliver Husser <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit b769fb2

Please sign in to comment.