Skip to content

Commit c38f16f

Browse files
committed
updated readme
1 parent f91db68 commit c38f16f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Incremental updates are developed on the `dev branch <https://github.com/achael/
2424
2525
Installing with pip will update most of the required libraries automatically (`numpy <http://www.numpy.org/>`_, `scipy <http://www.scipy.org/>`_, `matplotlib <http://www.matplotlib.org/>`_, `astropy <http://www.astropy.org/>`_, `ephem <http://pypi.python.org/pypi/pyephem/>`_, `future <http://pypi.python.org/pypi/future>`_, `h5py <http://www.h5py.org/>`_, and `pandas <http://www.pandas.pydata.org/>`_).
2626

27-
**If you want to use fast fourier transforms, you will also need to separately install** `NFFT <https://github.com/NFFT/nfft>`_ **and its** `pynfft wrapper <https://github.com/ghisvail/pyNFFT/>`__.
27+
**If you want to use fast fourier transforms, you will also need to separately install** `NFFT <https://github.com/NFFT/nfft>`_ **and its** `pyNFFT wrapper <https://github.com/ghisvail/pyNFFT/>`__. **Note that pyNFFT is only supported for python versions 3.11 or lower.**
2828

29-
The simplest way is to use `conda <https://anaconda.org/conda-forge/pynfft/>`__ to install both:
29+
The simplest way is to use `conda <https://anaconda.org/conda-forge/pynfft/>`__ to install both NFFT and pyNFFT:
3030

3131

3232
.. code-block:: bash

ehtim/survey.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import paramsurvey.params
2727

2828
import warnings
29-
warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)
29+
#warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)
3030

3131

3232
##################################################################################################

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def read(fname):
3636
"scripts/imaging.py",
3737
"scripts/imgsum.py"],
3838

39-
install_requires=["numpy>=1.24,<2.0",
40-
"scipy>=1.9.3",#,<1.14",
39+
install_requires=["numpy>=1.24", #,<2.0",
40+
"scipy>=1.9.3", #,<1.14.0"
4141
"astropy>=5.0.4",
4242
"matplotlib>=3.7.3",
4343
"skyfield",
@@ -46,7 +46,7 @@ def read(fname):
4646
"requests",
4747
"future",
4848
"networkx",
49-
# "pynfft; platform_system!='Darwin' or platform_machine!='arm64'",
49+
# "pynfft; platform_system!='Darwin' or platform_machine!='arm64'", # now must install manually
5050
"paramsurvey"
5151
],
5252
classifiers=[

0 commit comments

Comments
 (0)