Skip to content

Commit

Permalink
v1.6.5
Browse files Browse the repository at this point in the history
version 1.6.5
  • Loading branch information
thusser authored Nov 16, 2023
2 parents 166b061 + 13c1735 commit f906353
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pyobs/utils/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,11 @@ async def calibrate(self, image: Image) -> Image:
calibrated = image.copy()

# run pipeline
return await self.run_pipeline(calibrated)
image = await self.run_pipeline(calibrated)

# set reduction level and return
image.header["RLEVEL"] = (1, "Reduction level")
return image

@staticmethod
async def find_master(
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.6.4"
version = "1.6.5"
description = "robotic telescope software"
authors = ["Tim-Oliver Husser <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit f906353

Please sign in to comment.