This repository has been archived by the owner on Dec 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from pllim/import-warn
Deprecate PyFITS for good in a last 3.5 release
- Loading branch information
Showing
6 changed files
with
71 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[metadata] | ||
name = pyfits | ||
version = 3.5.dev | ||
version = 3.5 | ||
author = J. C. Hsu, Paul Barrett, Christopher Hanley, James Taylor, | ||
Michael Droettboom, Erik M. Bray | ||
author-email = [email protected] | ||
summary = Reads FITS images and tables into numpy arrays and manipulates FITS headers | ||
description-file = | ||
description-file = | ||
README.txt | ||
CHANGES.txt | ||
home-page = http://www.stsci.edu/resources/software_hardware/pyfits | ||
classifier = | ||
home-page = http://pyfits.readthedocs.io/en/latest/ | ||
classifier = | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Operating System :: OS Independent | ||
|
@@ -18,12 +18,12 @@ classifier = | |
Topic :: Scientific/Engineering :: Astronomy | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
requires-python = >=2.6 | ||
requires-dist = | ||
requires-dist = | ||
numpy | ||
|
||
|
||
[files] | ||
packages = | ||
packages = | ||
pyfits | ||
pyfits._compat | ||
pyfits._compat._odict_py2 | ||
|
@@ -32,16 +32,16 @@ packages = | |
pyfits.hdu | ||
pyfits.scripts | ||
pyfits.tests | ||
package_data = | ||
package_data = | ||
pyfits.tests = data/*.fits | ||
scripts = | ||
scripts = | ||
scripts/fitscheck | ||
scripts/fitsdiff | ||
scripts/fitshead | ||
|
||
|
||
[extension=pyfits.compression] | ||
sources = | ||
sources = | ||
# Comment out or remove all of the cextern/cfitsio/* files when building with | ||
# the system CFITSIO | ||
cextern/cfitsio/adler32.c | ||
|
@@ -116,7 +116,7 @@ sources = | |
cextern/cfitsio/zuncompress.c | ||
cextern/cfitsio/zutil.c | ||
src/compressionmodule.c | ||
include_dirs = | ||
include_dirs = | ||
numpy | ||
# Comment out or remove the following line when building witht he system | ||
# CFITSIO | ||
|
@@ -134,7 +134,7 @@ extra_compile_args = | |
# Uncomment this line when building with the system CFITSIO | ||
#libraries = cfitsio | ||
optional = True | ||
fail_message = | ||
fail_message = | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
Failed to build PyFITS tile compression support. PyFITS will still | ||
function, but without the ability to read or write compressed images. | ||
|
@@ -143,7 +143,7 @@ fail_message = | |
|
||
|
||
[global] | ||
setup-hooks = | ||
setup-hooks = | ||
# stsci.distutils.hooks.tag_svn_revision | ||
setup_hooks.py2_only_hook | ||
stsci.distutils.hooks.version_setup_hook | ||
|