Skip to content

Commit

Permalink
Merge pull request #516 from PyFstat/pin-numpy-for-ptemcee
Browse files Browse the repository at this point in the history
pin numpy<1.24.0
  • Loading branch information
dbkeitel authored Dec 19, 2022
2 parents 9a5f623 + 1285dbc commit 97c1c42
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.19.1 [19/12/2022]

- Pinned to `numpy<1.24.0` to avoid incompatibility with `ptemcee`.

## 1.19.0 [01/12/2022]

- This is the first PyFstat release to officially support python 3.11.
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ which should all be pulled in automatically if you use `pip`:
For a general introduction to installing modules, see
[here](https://docs.python.org/3/installing/index.html).

NOTE: currently we have pinned to
`numpy<1.24.0` (due to an incompatibility with ptemcee)
and `lalsuite<=7.11` (our SFT filename handling needs to be updated).

### Optional dependencies

PyFstat manages optional dependencies through setuptool's `extras_require`.
Expand Down
2 changes: 1 addition & 1 deletion etc/pyfstat-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- dill
- lalpulsar >=5.0.0,<6.0.0
- matplotlib-base >=2.1
- numpy
- numpy <1.24.0
- pathos
- pip
- ptemcee
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"corner",
"dill",
"matplotlib>=2.1",
"numpy",
"numpy<1.24.0",
"pathos",
"ptemcee",
"scipy",
Expand Down

0 comments on commit 97c1c42

Please sign in to comment.