Skip to content

Commit

Permalink
Breakage in CASA dependency (#64)
Browse files Browse the repository at this point in the history
* Downgrade CASA dependency and pin to numpy <2.0. This fixes an issue with the latest casa version where casa ephemeris data distributed through Debian is no longer read correctly.
  • Loading branch information
bennahugo authored Oct 8, 2024
1 parent 968599d commit 86f6bcd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "simms"
version = "2.0.0"
version = "2.0.1"
description = "Empty MS creation tool"
authors = ["Sphesihle Makhathini <[email protected]>"]
license = "GPL2"
Expand All @@ -9,9 +9,10 @@ homepage="https://github.com/radio-astro/simms"

[tool.poetry.dependencies]
python = "^3.6"
numpy = "*"
casatasks = "*"
casatools = "*"
numpy = "<2.0"
# Breakage in handling of system-wide ephem directories in casa 6.6.3 and beyond
casatasks = "<6.6.3"
casatools = "<6.6.3"

[tool.poetry.scripts]
simms = "simms.core:main"
Expand Down

0 comments on commit 86f6bcd

Please sign in to comment.