Python Readthedocs突然无法安装scipy

Python Readthedocs突然无法安装scipy,python,scipy,read-the-docs,Python,Scipy,Read The Docs,很突然,readthedocs无法构建我们的项目。据我所知,这是由于SCIPY1.0.0,出于某种原因,它认为它在windows上运行?所有生成都失败,错误如下: Installed /home/docs/checkouts/readthedocs.org/user_builds/pints/envs/latest/lib/python3.5/site-packages/pints-0.0.1-py3.5.egg Processing dependencies for pints==0.0.1

很突然,readthedocs无法构建我们的项目。据我所知,这是由于SCIPY1.0.0,出于某种原因,它认为它在windows上运行?所有生成都失败,错误如下:

Installed /home/docs/checkouts/readthedocs.org/user_builds/pints/envs/latest/lib/python3.5/site-packages/pints-0.0.1-py3.5.egg
Processing dependencies for pints==0.0.1
Searching for scipy>=0.13
Reading https://pypi.python.org/simple/scipy/
Downloading https://pypi.python.org/packages/d0/73/76fc6ea21818eed0de8dd38e1e9586725578864169a2b31acdeffb9131c8/scipy-1.0.0.tar.gz#md5=53fa34bd3733a9a4216842b6000f7316
Best match: scipy 1.0.0
Processing scipy-1.0.0.tar.gz
Writing /tmp/easy_install-2lr9ts8l/scipy-1.0.0/setup.cfg
Running scipy-1.0.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-2lr9ts8l/scipy-1.0.0/egg-dist-tmp-v00htrtw
Warning: Can't read registry to find the necessary compiler setting
Make sure that Python modules winreg, win32api or win32con are installed.
/tmp/easy_install-2lr9ts8l/scipy-1.0.0/setup.py:323: UserWarning: Unrecognized setuptools command, proceeding with generating Cython sources and expanding templates
  warnings.warn("Unrecognized setuptools command, proceeding with "
/home/docs/checkouts/readthedocs.org/user_builds/pints/envs/latest/lib/python3.5/site-packages/numpy/distutils/system_info.py:624: UserWarning: 
    Atlas (http://math-atlas.sourceforge.net/) libraries not found.
    Directories to search for the libraries can be specified in the
    numpy/distutils/site.cfg file (section [atlas]) or by setting
    the ATLAS environment variable.
  self.calc_info()
/home/docs/checkouts/readthedocs.org/user_builds/pints/envs/latest/lib/python3.5/site-packages/numpy/distutils/system_info.py:624: UserWarning: 
    Lapack (http://www.netlib.org/lapack/) libraries not found.
    Directories to search for the libraries can be specified in the
    numpy/distutils/site.cfg file (section [lapack]) or by setting
    the LAPACK environment variable.
  self.calc_info()
/home/docs/checkouts/readthedocs.org/user_builds/pints/envs/latest/lib/python3.5/site-packages/numpy/distutils/system_info.py:624: UserWarning: 
    Lapack (http://www.netlib.org/lapack/) sources not found.
    Directories to search for the sources can be specified in the
    numpy/distutils/site.cfg file (section [lapack_src]) or by setting
    the LAPACK_SRC environment variable.
  self.calc_info()
Running from scipy source directory.
error: no lapack/blas resources found
有人知道如何解决这个问题吗

谢谢,
Michael发生这种情况是因为我们没有在readthedocs使用的requirements.txt中指定scipy

(我们没有这样做的原因是我们有一个单独的
requirements docs.txt
,它没有列出
requirements.txt
中已经存在的内容。通过在
requirements docs.txt
顶部添加一行
-r requirements.txt
来解决这个问题,它包含了
requirements.txt
中的所有内容。)