Astropy弃用警告

时间:2014-07-20 15:57:07

标签: python astropy

我为python 2.7安装了Anaconda发行版(一切正常),然后我按照SunPy install安装了SunPy

安装SunPy的额外依赖项:

conda update astropy
pip install suds

安装run:

pip install sunpy

但我可以运行这样的事情:

from astropy.io import fits
file = fits.open("file.fits")
file = file[0].data

我在安装SunPy并更新Astropy

之前没有出现此警告

警告:AstropyDeprecationWarning:配置参数' enabled_record_valued_keyword_cards'在文件的[io.fits]部分' C:\ Users \ nandhos.astropy \ config \ astropy.cfg'已弃用。使用' enable_record_valued_keyword_cards'在[适合]部分。 [astropy.config.configuration]

显然,一切正常,只是我想知道为什么会出现这条消息。我如何使用" enable_record_valued_keyword_cards" in section fit intead其他配置?

1 个答案:

答案 0 :(得分:2)

摆脱警告的最简单方法是删除~/.astropy/config/astropy.cfg文件,如果您之前没有编辑过的话。这应该在后续版本的astropy中修复。