Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
achael committed Jan 9, 2025
1 parent f91db68 commit c38f16f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Incremental updates are developed on the `dev branch <https://github.com/achael/
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/>`_).

**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/>`__.
**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.**

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


.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion ehtim/survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import paramsurvey.params

import warnings
warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)
#warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)


##################################################################################################
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def read(fname):
"scripts/imaging.py",
"scripts/imgsum.py"],

install_requires=["numpy>=1.24,<2.0",
"scipy>=1.9.3",#,<1.14",
install_requires=["numpy>=1.24", #,<2.0",
"scipy>=1.9.3", #,<1.14.0"
"astropy>=5.0.4",
"matplotlib>=3.7.3",
"skyfield",
Expand All @@ -46,7 +46,7 @@ def read(fname):
"requests",
"future",
"networkx",
# "pynfft; platform_system!='Darwin' or platform_machine!='arm64'",
# "pynfft; platform_system!='Darwin' or platform_machine!='arm64'", # now must install manually
"paramsurvey"
],
classifiers=[
Expand Down

0 comments on commit c38f16f

Please sign in to comment.