Skip to content

Commit

Permalink
Merge pull request #8 from jablazek/master
Browse files Browse the repository at this point in the history
Merging bug fixes for tag 3.1.3
  • Loading branch information
jablazek authored Jul 14, 2024
2 parents fd4e7bd + 1cba263 commit 97d101d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ utilizes Fourier methods combined with analytic expressions to reduce the
computation time to scale as N log N, where N is the number of grid points in
the input linear power spectrum.

NOTE: v3.1.0 (latest version on pip and conda) requires numpy version < 1.24. This is fixed in v3.1.1. pip and conda will be updated ASAP.
NOTE: v3.1.0 and earlier require numpy version < 1.24. This is fixed in v3.1.1 and later, which is available on pip and conda.

Easy installation with pip:

Expand Down
2 changes: 1 addition & 1 deletion fastpt/filter_Pk.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def zero_phase(sig):

def BW_filter(P_in,order=3,nf=.01):

print 'at butter, freq=', nf
# print 'at butter, freq=', nf

B, A = butter(order, nf, 'low')

Expand Down
1 change: 0 additions & 1 deletion fastpt/matter_power_spt.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import numpy as np
from numpy import log, sqrt, exp, pi
from scipy.integrate import trapz
from scipy.signal import fftconvolve
from .J_k import J_k
import sys
Expand Down

0 comments on commit 97d101d

Please sign in to comment.