[python-astropy] branch debian updated (94d421e -> c199eec)

Ole Streicher olebole-guest at moszumanska.debian.org
Sat Nov 30 13:28:38 UTC 2013


This is an automated email from the git hooks/post-receive script.

olebole-guest pushed a change to branch debian
in repository python-astropy.

      from  94d421e   Small format fixes my cme fix dpkg-control
       new  dbf4b45   New upstream version 0.3
       new  c199eec   Update debian files to new version; remove legacy packages that are no longer supported upstream

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                                        |   798 +-
 PKG-INFO                                           |     4 +-
 README.rst                                         |    24 +-
 astropy/__init__.py                                |   119 +-
 astropy/config/__init__.py                         |     2 +
 astropy/config/affiliated.py                       |     3 +-
 astropy/config/configuration.py                    |   114 +-
 astropy/config/paths.py                            |   130 +-
 .../tests/__init__.py => config/setup_package.py}  |     3 +
 astropy/config/tests/__init__.py                   |     2 +
 astropy/config/tests/test_configs.py               |    34 +-
 astropy/constants/__init__.py                      |     4 +-
 astropy/constants/cgs.py                           |     2 +
 astropy/constants/constant.py                      |    29 +-
 .../__init__.py => constants/setup_package.py}     |     3 +
 astropy/constants/si.py                            |    34 +
 astropy/constants/tests/__init__.py                |     2 +
 astropy/constants/tests/test_constant.py           |    25 +-
 astropy/convolution/__init__.py                    |    10 +
 astropy/{nddata => }/convolution/boundary_extend.c |   905 +-
 .../{nddata => }/convolution/boundary_extend.pyx   |     1 +
 astropy/{nddata => }/convolution/boundary_fill.c   |   881 +-
 astropy/{nddata => }/convolution/boundary_fill.pyx |     1 +
 astropy/{nddata => }/convolution/boundary_none.c   |  1321 +-
 astropy/{nddata => }/convolution/boundary_none.pyx |    21 +-
 astropy/{nddata => }/convolution/boundary_wrap.c   |   893 +-
 astropy/{nddata => }/convolution/boundary_wrap.pyx |     1 +
 astropy/{nddata => }/convolution/convolve.py       |    87 +-
 astropy/convolution/core.py                        |   353 +
 astropy/convolution/kernels.py                     |   936 +
 .../convolution => convolution/tests}/__init__.py  |     0
 .../convolution/tests/test_convolve.py             |    52 +-
 .../convolution/tests/test_convolve_fft.py         |   253 +-
 .../convolution/tests/test_convolve_kernels.py     |    86 +-
 .../convolution/tests/test_convolve_speeds.py      |    78 +-
 astropy/convolution/tests/test_discretize.py       |   103 +
 astropy/convolution/tests/test_kernel_class.py     |   353 +
 astropy/convolution/utils.py                       |   278 +
 astropy/coordinates/__init__.py                    |     6 +-
 astropy/coordinates/angle_lextab.py                |    11 +-
 astropy/coordinates/angle_parsetab.py              |    83 +-
 astropy/coordinates/angle_utilities.py             |   346 +-
 astropy/coordinates/angles.py                      |  1103 +-
 astropy/coordinates/builtin_systems.py             |   328 +-
 astropy/coordinates/coordsystems.py                |   348 +-
 astropy/coordinates/distances.py                   |   435 +-
 astropy/coordinates/earth_orientation.py           |    10 +-
 astropy/coordinates/errors.py                      |    77 +-
 astropy/coordinates/matching.py                    |   173 +
 astropy/coordinates/name_resolve.py                |    71 +-
 astropy/coordinates/old_builtin_systems_names.py   |   124 +
 astropy/coordinates/setup_package.py               |     5 +
 astropy/coordinates/tests/__init__.py              |     2 +
 astropy/coordinates/tests/accuracy/__init__.py     |     2 +
 .../coordinates/tests/accuracy/generate_ref_ast.py |    88 +-
 .../tests/accuracy/test_fk4_no_e_fk4.py            |    20 +-
 .../tests/accuracy/test_fk4_no_e_fk5.py            |    16 +-
 .../tests/accuracy/test_galactic_fk4.py            |    19 +-
 .../coordinates/tests/accuracy/test_icrs_fk5.py    |    19 +-
 astropy/coordinates/tests/test_angles.py           |   273 +-
 .../coordinates/tests/test_angular_separation.py   |    57 +
 astropy/coordinates/tests/test_api.py              |   513 +-
 astropy/coordinates/tests/test_arrays.py           |   267 +-
 astropy/coordinates/tests/test_distance.py         |   208 +-
 astropy/coordinates/tests/test_formatting.py       |   135 +-
 astropy/coordinates/tests/test_matching.py         |   121 +
 astropy/coordinates/tests/test_name_resolve.py     |    75 +-
 astropy/coordinates/tests/test_sphere_ang_dists.py |    89 -
 astropy/coordinates/tests/test_transformations.py  |   124 +-
 astropy/coordinates/transformations.py             |    89 +-
 astropy/cosmology/core.py                          |  1259 +-
 astropy/cosmology/funcs.py                         |    25 +-
 astropy/cosmology/parameters.py                    |   145 +-
 astropy/cosmology/tests/test_cosmology.py          |   637 +-
 astropy/extern/pytest.py                           |  5692 ++-
 .../tests/__init__.py => extern/setup_package.py}  |     2 +
 astropy/extern/six.py                              |   577 +
 astropy/io/ascii/basic.py                          |    24 +-
 astropy/io/ascii/cds.py                            |    65 +-
 astropy/io/ascii/connect.py                        |   119 +-
 astropy/io/ascii/core.py                           |   315 +-
 astropy/io/ascii/daophot.py                        |   122 +-
 astropy/io/ascii/fixedwidth.py                     |    68 +-
 astropy/io/ascii/ipac.py                           |   333 +-
 astropy/io/ascii/latex.py                          |    75 +-
 astropy/io/ascii/setup_package.py                  |     2 +-
 astropy/io/ascii/sextractor.py                     |     7 +-
 astropy/io/ascii/tests/common.py                   |    17 +-
 astropy/io/ascii/tests/t/ipac.dat                  |    10 +-
 .../io/ascii/tests/test_cds_header_from_readme.py  |   108 +-
 astropy/io/ascii/tests/test_compressed.py          |     4 -
 astropy/io/ascii/tests/test_connect.py             |    15 +-
 astropy/io/ascii/tests/test_fixedwidth.py          |    77 +-
 astropy/io/ascii/tests/test_ipac_definitions.py    |   110 +-
 astropy/io/ascii/tests/test_read.py                |   210 +-
 astropy/io/ascii/tests/test_types.py               |    20 +-
 astropy/io/ascii/tests/test_write.py               |   169 +-
 astropy/io/ascii/ui.py                             |   112 +-
 astropy/io/fits/card.py                            |    37 +-
 astropy/io/fits/column.py                          |  1108 +-
 astropy/io/fits/connect.py                         |   269 +
 astropy/io/fits/convenience.py                     |   104 +-
 astropy/io/fits/diff.py                            |    43 +-
 astropy/io/fits/file.py                            |   261 +-
 astropy/io/fits/fitsrec.py                         |   651 +-
 astropy/io/fits/hdu/base.py                        |   424 +-
 astropy/io/fits/hdu/compressed.py                  |   671 +-
 astropy/io/fits/hdu/groups.py                      |    47 +-
 astropy/io/fits/hdu/hdulist.py                     |   120 +-
 astropy/io/fits/hdu/image.py                       |    37 +-
 astropy/io/fits/hdu/nonstandard.py                 |    16 +-
 astropy/io/fits/hdu/streaming.py                   |    10 +-
 astropy/io/fits/hdu/table.py                       |   434 +-
 astropy/io/fits/header.py                          |   115 +-
 astropy/io/fits/py3compat.py                       |    16 +-
 astropy/io/fits/scripts/fitscheck.py               |     2 +-
 astropy/io/fits/setup_package.py                   |     5 -
 astropy/io/fits/src/compressionmodule.c            |    58 +-
 astropy/io/fits/src/compressionmodule.h            |     8 +
 astropy/io/fits/tests/__init__.py                  |     1 +
 astropy/io/fits/tests/test_connect.py              |   220 +
 astropy/io/fits/tests/test_core.py                 |   128 +-
 astropy/io/fits/tests/test_diff.py                 |     1 -
 astropy/io/fits/tests/test_division.py             |    13 +-
 astropy/io/fits/tests/test_groups.py               |     1 -
 astropy/io/fits/tests/test_hdulist.py              |    42 +-
 astropy/io/fits/tests/test_header.py               |   130 +-
 astropy/io/fits/tests/test_image.py                |    69 +-
 astropy/io/fits/tests/test_nonstandard.py          |    23 +
 astropy/io/fits/tests/test_table.py                |   421 +-
 astropy/io/fits/tests/test_uint.py                 |   175 +-
 astropy/io/fits/tests/test_util.py                 |    12 +-
 astropy/io/fits/util.py                            |   233 +-
 astropy/io/fits/verify.py                          |    10 +-
 astropy/io/misc/hdf5.py                            |   170 +-
 astropy/io/misc/pickle_helpers.py                  |     6 +-
 astropy/io/misc/tests/test_hdf5.py                 |    91 +-
 astropy/io/registry.py                             |   249 +-
 astropy/io/tests/test_registry.py                  |    70 +-
 astropy/io/votable/__init__.py                     |     2 +
 astropy/io/votable/connect.py                      |    38 +-
 astropy/io/votable/converters.py                   |   227 +-
 astropy/io/votable/data/VOTable.v1.3.xsd           |   572 +
 astropy/io/votable/exceptions.py                   |    76 +-
 astropy/io/votable/setup_package.py                |     5 +-
 astropy/io/votable/table.py                        |    87 +-
 astropy/io/votable/tests/converter_test.py         |    13 +-
 .../io/votable/tests/data/nonstandard_units.xml    |    13 +
 ....xml => regression.bin.tabledata.truth.1.1.xml} |     2 +-
 ....xml => regression.bin.tabledata.truth.1.3.xml} |    25 +-
 astropy/io/votable/tests/data/regression.xml       |     2 +-
 astropy/io/votable/tests/exception_test.py         |     1 -
 astropy/io/votable/tests/table_test.py             |    33 +-
 astropy/io/votable/tests/tree_test.py              |    12 +
 astropy/io/votable/tests/ucd_test.py               |     9 +-
 astropy/io/votable/tests/util_test.py              |     6 -
 astropy/io/votable/tests/vo_test.py                |   207 +-
 astropy/io/votable/tree.py                         |   498 +-
 astropy/io/votable/ucd.py                          |    26 +-
 astropy/io/votable/util.py                         |    39 +-
 astropy/io/votable/validator/__init__.py           |     2 +-
 astropy/io/votable/validator/html.py               |   176 +-
 astropy/io/votable/validator/main.py               |     5 +-
 astropy/io/votable/validator/result.py             |    83 +-
 astropy/io/votable/voexceptions.py                 |     4 +-
 astropy/io/votable/volint.py                       |     1 -
 astropy/io/votable/xmlutil.py                      |    22 +-
 astropy/logger.py                                  |    18 +-
 astropy/modeling/__init__.py                       |    13 +
 astropy/modeling/core.py                           |  1115 +
 astropy/modeling/fitting.py                        |   779 +
 astropy/modeling/functional_models.py              |  1302 +
 astropy/modeling/models.py                         |    58 +
 astropy/modeling/parameters.py                     |   519 +
 astropy/modeling/polynomial.py                     |  1307 +
 astropy/modeling/powerlaws.py                      |   256 +
 astropy/modeling/projections.py                    |   503 +
 astropy/modeling/rotations.py                      |   222 +
 astropy/{coordinates => modeling}/setup_package.py |     3 +-
 .../convolution => modeling}/tests/__init__.py     |     0
 astropy/modeling/tests/data/1904-66_AZP.fits       |   353 +
 .../{wcs/tests => modeling/tests/data}/__init__.py |     2 +
 astropy/modeling/tests/data/idcompspec.fits        |    36 +
 astropy/modeling/tests/example_models.py           |   289 +
 astropy/modeling/tests/irafutil.py                 |   262 +
 astropy/modeling/tests/test_constraints.py         |   287 +
 astropy/modeling/tests/test_fitters.py             |   227 +
 astropy/modeling/tests/test_functional_models.py   |    21 +
 astropy/modeling/tests/test_input.py               |   305 +
 astropy/modeling/tests/test_models.py              |   478 +
 astropy/modeling/tests/test_parameters.py          |   264 +
 astropy/modeling/tests/test_projections.py         |   146 +
 astropy/modeling/tests/test_rotations.py           |    44 +
 astropy/modeling/utils.py                          |    52 +
 astropy/nddata/__init__.py                         |     8 -
 astropy/nddata/convolution/make_kernel.py          |   124 -
 .../nddata/convolution/tests/test_make_kernel.py   |    25 -
 astropy/nddata/flag_collection.py                  |     3 +
 astropy/nddata/nddata.py                           |    74 +-
 astropy/nddata/nduncertainty.py                    |    27 +-
 astropy/nddata/setup_package.py                    |     2 +
 astropy/nddata/tests/test_flag_collection.py       |     5 +-
 astropy/nddata/tests/test_nddata.py                |   106 +-
 astropy/setup_helpers.py                           |   448 +-
 astropy/sphinx/conf.py                             |    37 +-
 astropy/sphinx/ext/automodapi.py                   |    23 +-
 astropy/sphinx/ext/automodsumm.py                  |    50 +-
 astropy/sphinx/ext/edit_on_github.py               |    23 +-
 astropy/sphinx/ext/tests/test_automodapi.py        |    42 +-
 .../sphinx/themes/bootstrap-astropy/layout.html    |    12 +-
 .../bootstrap-astropy/static/astropy_docs_32.png   |   Bin 4128 -> 0 bytes
 .../bootstrap-astropy/static/astropy_logo_32.png   |   Bin 0 -> 1884 bytes
 .../bootstrap-astropy/static/bootstrap-astropy.css |    60 +-
 astropy/sphinx/themes/bootstrap-astropy/theme.conf |     5 +
 astropy/stats/funcs.py                             |   804 +-
 astropy/stats/setup_package.py                     |     2 +
 astropy/stats/tests/test_funcs.py                  |   214 +-
 astropy/table/__init__.py                          |     5 +-
 .../boundary_none.c => table/_np_utils.c}          |  4174 +-
 astropy/table/_np_utils.pyx                        |   134 +
 astropy/table/data/demo_page.css                   |    96 +
 astropy/table/data/demo_table.css                  |   378 +
 astropy/table/data/jquery-1.10.2.min.js            |     6 +
 astropy/table/data/jquery-ui.css                   |  1177 +
 astropy/table/data/jquery.dataTables.min.js        |   157 +
 astropy/table/groups.py                            |   367 +
 astropy/table/jsviewer.py                          |    99 +
 astropy/table/np_utils.py                          |   543 +
 astropy/table/operations.py                        |   295 +
 astropy/table/pprint.py                            |   110 +-
 astropy/table/setup_package.py                     |    26 +
 astropy/table/table.py                             |  1240 +-
 astropy/table/tests/test_column.py                 |   152 +-
 astropy/table/tests/test_groups.py                 |   540 +
 astropy/table/tests/test_init_table.py             |   253 +-
 astropy/table/tests/test_item_access.py            |   190 +-
 astropy/table/tests/test_masked.py                 |   116 +-
 astropy/table/tests/test_np_utils.py               |    46 +
 astropy/table/tests/test_operations.py             |   729 +
 astropy/table/tests/test_pprint.py                 |   161 +-
 astropy/table/tests/test_row.py                    |    83 +-
 astropy/table/tests/test_table.py                  |   720 +-
 astropy/tests/__init__.py                          |     2 +
 astropy/tests/compat.py                            |    15 -
 astropy/tests/helper.py                            |   239 +-
 astropy/tests/pytest_plugins.py                    |   227 +-
 astropy/tests/setup_package.py                     |     5 +
 astropy/tests/test_logger.py                       |    95 +-
 astropy/tests/tests/__init__.py                    |     2 +
 astropy/tests/tests/run_after_2to3.py              |     4 +-
 astropy/tests/tests/test_imports.py                |    33 +-
 astropy/tests/tests/test_open_file_detection.py    |     6 +-
 astropy/tests/tests/test_run_tests.py              |     2 +
 astropy/tests/tests/test_skip_remote_data.py       |     2 +
 astropy/time/core.py                               |   908 +-
 astropy/time/{sofa_time.c => erfa_time.c}          |  4635 +-
 astropy/time/{sofa_time.pyx => erfa_time.pyx}      |   276 +-
 astropy/time/setup_package.py                      |    19 +-
 astropy/time/tests/test_basic.py                   |   198 +-
 astropy/time/tests/test_comparisons.py             |    50 +
 astropy/time/tests/test_delta.py                   |    74 +-
 astropy/time/tests/test_guess.py                   |     4 +-
 astropy/time/tests/test_precision.py               |   112 +
 astropy/time/tests/test_quantity_interaction.py    |   155 +
 astropy/time/tests/test_ut1.py                     |    49 +
 astropy/units/__init__.py                          |    14 +-
 astropy/units/astrophys.py                         |    61 +-
 astropy/units/cds.py                               |   190 +
 astropy/units/cgs.py                               |    30 +-
 astropy/units/core.py                              |  1333 +-
 astropy/units/equivalencies.py                     |   395 +-
 astropy/units/format/__init__.py                   |    10 +-
 astropy/units/format/cds.py                        |    81 +-
 astropy/units/format/cds_lextab.py                 |     8 +-
 astropy/units/format/cds_parsetab.py               |    68 +-
 astropy/units/format/console.py                    |    12 +-
 astropy/units/format/fits.py                       |    15 +-
 astropy/units/format/generic.py                    |    61 +-
 astropy/units/format/generic_lextab.py             |     8 +-
 astropy/units/format/generic_parsetab.py           |   111 +-
 astropy/units/format/latex.py                      |    11 +-
 astropy/units/format/unicode_format.py             |    17 +-
 astropy/units/format/utils.py                      |    53 +-
 astropy/units/format/vounit.py                     |    19 +-
 astropy/units/imperial.py                          |    65 +-
 astropy/units/physical.py                          |    29 +-
 astropy/units/quantity.py                          |  1028 +-
 astropy/units/quantity_helper.py                   |   298 +
 astropy/units/setup_package.py                     |     2 +
 astropy/units/si.py                                |   111 +-
 astropy/units/tests/test_equivalencies.py          |   473 +
 astropy/units/tests/test_format.py                 |   111 +-
 astropy/units/tests/test_physical.py               |    20 +-
 astropy/units/tests/test_quantity.py               |   388 +-
 astropy/units/tests/test_quantity_array_methods.py |   421 +
 astropy/units/tests/test_quantity_non_ufuncs.py    |    25 +
 astropy/units/tests/test_quantity_ufuncs.py        |   587 +
 astropy/units/tests/test_units.py                  |   262 +-
 astropy/units/utils.py                             |    18 +-
 astropy/utils/__init__.py                          |     3 +
 astropy/utils/compat/_argparse_py2/__init__.py     |  2363 +
 .../__init__.py}                                   |     0
 astropy/utils/compat/_gzip_32.py                   |   625 -
 .../compat/{_gzip_27.py => _gzip_py2/__init__.py}  |     0
 astropy/utils/compat/_odict_py2/__init__.py        |   190 +
 astropy/utils/compat/_subprocess_py2/__init__.py   |    38 +
 astropy/utils/compat/argparse.py                   |  2366 +-
 astropy/utils/compat/fractions.py                  |     2 +-
 astropy/utils/compat/futures/__init__.py           |    21 +
 astropy/utils/compat/futures/_base.py              |   636 +
 astropy/utils/compat/futures/process.py            |   388 +
 astropy/utils/compat/futures/thread.py             |   153 +
 astropy/utils/compat/gzip.py                       |     4 +-
 astropy/utils/compat/misc.py                       |    57 +-
 astropy/utils/compat/odict.py                      |   189 +-
 astropy/utils/compat/subprocess.py                 |    19 +
 astropy/utils/console.py                           |   199 +-
 astropy/utils/data.py                              |   279 +-
 astropy/utils/exceptions.py                        |    46 +
 astropy/utils/iers/__init__.py                     |     4 +
 astropy/utils/iers/data/ReadMe.eopc04_IAU2000      |    41 +
 astropy/utils/iers/data/ReadMe.finals2000A         |    57 +
 astropy/utils/iers/data/eopc04_IAU2000.62-now      | 18913 +++++++
 astropy/utils/iers/iers.py                         |   350 +
 astropy/utils/iers/tests/__init__.py               |     2 +
 astropy/utils/iers/tests/test_iers.py              |    76 +
 astropy/utils/metadata.py                          |   133 +
 astropy/utils/misc.py                              |   211 +-
 astropy/utils/release.py                           |    49 +-
 astropy/utils/setup_package.py                     |    15 +-
 astropy/utils/tests/__init__.py                    |     2 +
 astropy/utils/tests/odict_mapping.py               |    14 +-
 astropy/utils/tests/odict_support.py               |     5 +-
 astropy/utils/tests/test_collections.py            |     3 +
 astropy/utils/tests/test_console.py                |   119 +-
 astropy/utils/tests/test_data.py                   |    37 +-
 astropy/utils/tests/test_gzip.py                   |     8 +-
 astropy/utils/tests/test_metadata.py               |    73 +
 astropy/utils/tests/test_misc.py                   |    47 +-
 astropy/utils/tests/test_odict.py                  |    14 +-
 astropy/utils/tests/test_timer.py                  |    64 +
 astropy/utils/tests/test_xml.py                    |    37 +-
 astropy/utils/timer.py                             |   344 +
 astropy/utils/xml/__init__.py                      |     2 +
 astropy/utils/xml/check.py                         |     7 +-
 astropy/utils/xml/iterparser.py                    |    17 +-
 astropy/utils/xml/unescaper.py                     |    58 +
 astropy/utils/xml/validate.py                      |     6 +-
 astropy/utils/xml/writer.py                        |    45 +-
 astropy/version.py                                 |     8 +-
 astropy/version_helpers.py                         |    27 +-
 astropy/{config/tests => vo}/__init__.py           |     0
 astropy/{config/tests => vo/client}/__init__.py    |     0
 astropy/vo/client/async.py                         |    83 +
 astropy/vo/client/conesearch.py                    |   505 +
 .../{coordinates => vo/client}/setup_package.py    |     4 +-
 astropy/{config => vo/client}/tests/__init__.py    |     0
 astropy/vo/client/tests/data/conesearch_error1.xml |     6 +
 astropy/vo/client/tests/data/conesearch_error2.xml |     8 +
 astropy/vo/client/tests/data/conesearch_error3.xml |     9 +
 astropy/vo/client/tests/data/conesearch_error4.xml |     9 +
 astropy/vo/client/tests/test_vo.py                 |   240 +
 astropy/vo/client/vos_catalog.py                   |   464 +
 astropy/{config/tests => vo/validator}/__init__.py |     0
 astropy/vo/validator/data/conesearch_urls.txt      |    30 +
 astropy/vo/validator/inspect.py                    |   189 +
 astropy/vo/validator/setup_package.py              |     8 +
 astropy/{config => vo/validator}/tests/__init__.py |     0
 .../vo/validator/tests/data/conesearch_error.json  |     4 +
 .../validator/tests/data/conesearch_exception.json |     4 +
 .../vo/validator/tests/data/conesearch_good.json   |    91 +
 .../tests/data/conesearch_good_subset.json         |    47 +
 .../vo/validator/tests/data/conesearch_warn.json   |     4 +
 astropy/vo/validator/tests/data/listcats1.out      |    10 +
 astropy/vo/validator/tests/data/listcats2.out      |     5 +
 astropy/vo/validator/tests/data/printcat.out       |    44 +
 astropy/vo/validator/tests/data/tally.out          |     5 +
 .../data/vao_conesearch_sites_121107_subset.xml    |    92 +
 astropy/vo/validator/tests/test_validate.py        |   154 +
 astropy/vo/validator/tstquery.py                   |    73 +
 astropy/vo/validator/validate.py                   |   384 +
 astropy/wcs/_docutil.py                            |     2 +-
 astropy/wcs/docstrings.py                          |    82 +-
 .../wcs/include/{ => astropy_wcs}/astropy_wcs.h    |     0
 .../include/{ => astropy_wcs}/astropy_wcs_api.h    |     0
 astropy/wcs/include/{ => astropy_wcs}/distortion.h |     0
 .../include/{ => astropy_wcs}/distortion_wrap.h    |     0
 astropy/wcs/include/{ => astropy_wcs}/docstrings.h |    18 +-
 astropy/wcs/include/{ => astropy_wcs}/isnan.h      |     0
 astropy/wcs/include/{ => astropy_wcs}/pipeline.h   |     0
 astropy/wcs/include/{ => astropy_wcs}/pyutil.h     |     4 +-
 astropy/wcs/include/{ => astropy_wcs}/sip.h        |     0
 astropy/wcs/include/{ => astropy_wcs}/sip_wrap.h   |     0
 .../wcs/include/{ => astropy_wcs}/str_list_proxy.h |     0
 .../include/{ => astropy_wcs}/unit_list_proxy.h    |     0
 astropy/wcs/include/{ => astropy_wcs}/util.h       |     0
 astropy/wcs/include/{ => astropy_wcs}/wcsconfig.h  |     0
 .../include/{ => astropy_wcs}/wcslib_tabprm_wrap.h |     0
 .../include/{ => astropy_wcs}/wcslib_units_wrap.h  |     0
 .../wcs/include/{ => astropy_wcs}/wcslib_wrap.h    |     0
 .../include/{ => astropy_wcs}/wcslib_wtbarr_wrap.h |     0
 astropy/wcs/include/astropy_wcs_api.h              |   122 +-
 astropy/wcs/setup_package.py                       |    61 +-
 astropy/wcs/src/astropy_wcs.c                      |    20 +-
 astropy/wcs/src/astropy_wcs_api.c                  |     2 +-
 astropy/wcs/src/distortion.c                       |     3 +-
 astropy/wcs/src/distortion_wrap.c                  |     4 +-
 astropy/wcs/src/docstrings.c                       |   120 +-
 astropy/wcs/src/pipeline.c                         |     5 +-
 astropy/wcs/src/pyutil.c                           |   236 +-
 astropy/wcs/src/sip.c                              |    19 +-
 astropy/wcs/src/sip_wrap.c                         |     4 +-
 astropy/wcs/src/str_list_proxy.c                   |    29 +-
 astropy/wcs/src/unit_list_proxy.c                  |     4 +-
 astropy/wcs/src/util.c                             |     2 +-
 astropy/wcs/src/wcslib_tabprm_wrap.c               |     4 +-
 astropy/wcs/src/wcslib_units_wrap.c                |     4 +-
 astropy/wcs/src/wcslib_wrap.c                      |   245 +-
 astropy/wcs/src/wcslib_wtbarr_wrap.c               |     4 +-
 astropy/wcs/tests/__init__.py                      |     2 +-
 astropy/wcs/tests/data/defunct_keywords.hdr        |     1 +
 astropy/wcs/tests/data/dist.fits                   |   Bin 23040 -> 23040 bytes
 astropy/wcs/tests/data/validate.fits               |     1 +
 astropy/wcs/tests/data/validate.txt                |    16 +
 astropy/wcs/tests/test_pickle.py                   |     5 +-
 astropy/wcs/tests/test_profiling.py                |     7 +-
 astropy/wcs/tests/test_wcs.py                      |   113 +-
 astropy/wcs/tests/test_wcsprm.py                   |   108 +-
 astropy/wcs/wcs.py                                 |   696 +-
 astropy/wcs/wcslint.py                             |    19 +
 cextern/cfitsio/cfileio.c                          |   500 +-
 cextern/cfitsio/changes.txt                        |   271 +-
 cextern/cfitsio/drvrfile.c                         |    77 +-
 cextern/cfitsio/drvrmem.c                          |    50 +-
 cextern/cfitsio/editcol.c                          |    11 +-
 cextern/cfitsio/eval_f.c                           |    22 +-
 cextern/cfitsio/fitscore.c                         |   335 +-
 cextern/cfitsio/fitsio.h                           |   183 +-
 cextern/cfitsio/fitsio2.h                          |    50 +-
 cextern/cfitsio/getcolb.c                          |     9 +-
 cextern/cfitsio/getcold.c                          |     9 +-
 cextern/cfitsio/getcole.c                          |     9 +-
 cextern/cfitsio/getcoli.c                          |     9 +-
 cextern/cfitsio/getcolj.c                          |    18 +-
 cextern/cfitsio/getcolk.c                          |     9 +-
 cextern/cfitsio/getcoll.c                          |     9 +-
 cextern/cfitsio/getcolui.c                         |     9 +-
 cextern/cfitsio/getcoluj.c                         |     9 +-
 cextern/cfitsio/getcoluk.c                         |     9 +-
 cextern/cfitsio/getkey.c                           |    66 +-
 cextern/cfitsio/imcompress.c                       |  1310 +-
 cextern/cfitsio/iraffits.c                         |    18 +-
 cextern/cfitsio/longnam.h                          |     7 +-
 cextern/cfitsio/modkey.c                           |   499 +-
 cextern/cfitsio/putcolb.c                          |     9 +-
 cextern/cfitsio/putcold.c                          |     9 +-
 cextern/cfitsio/putcole.c                          |     9 +-
 cextern/cfitsio/putcoli.c                          |     9 +-
 cextern/cfitsio/putcolj.c                          |    18 +-
 cextern/cfitsio/putcolk.c                          |     9 +-
 cextern/cfitsio/putcolu.c                          |     2 +-
 cextern/cfitsio/putkey.c                           |    74 +-
 cextern/cfitsio/quantize.c                         |    56 +-
 cextern/cfitsio/region.c                           |     5 +
 cextern/cfitsio/ricecomp.c                         |   125 +-
 cextern/erfa/erfa.c                                | 22822 +++++++++
 cextern/erfa/erfa.h                                |   467 +
 cextern/sofa/sofa.c                                | 49467 -------------------
 cextern/sofa/sofa.h                                |   429 -
 cextern/sofa/sofam.h                               |   205 -
 cextern/wcslib/C/GNUmakefile                       |     8 +-
 cextern/wcslib/C/cel.c                             |     6 +-
 cextern/wcslib/C/cel.h                             |     8 +-
 cextern/wcslib/C/fitshdr.h                         |     6 +-
 cextern/wcslib/C/fitshdr.l                         |     6 +-
 cextern/wcslib/C/flexed/fitshdr.c                  |     6 +-
 cextern/wcslib/C/flexed/wcsbth.c                   |   598 +-
 cextern/wcslib/C/flexed/wcspih.c                   |   217 +-
 cextern/wcslib/C/flexed/wcsulex.c                  |     8 +-
 cextern/wcslib/C/flexed/wcsutrn.c                  |     6 +-
 cextern/wcslib/C/getwcstab.c                       |     6 +-
 cextern/wcslib/C/getwcstab.h                       |     6 +-
 cextern/wcslib/C/lin.c                             |     6 +-
 cextern/wcslib/C/lin.h                             |     8 +-
 cextern/wcslib/C/log.c                             |     6 +-
 cextern/wcslib/C/log.h                             |     8 +-
 cextern/wcslib/{ => C}/makedefs.in                 |     8 +-
 cextern/wcslib/C/prj.c                             |   343 +-
 cextern/wcslib/C/prj.h                             |    15 +-
 cextern/wcslib/C/spc.c                             |     6 +-
 cextern/wcslib/C/spc.h                             |    38 +-
 cextern/wcslib/C/sph.c                             |     6 +-
 cextern/wcslib/C/sph.h                             |     8 +-
 cextern/wcslib/C/spx.c                             |     6 +-
 cextern/wcslib/C/spx.h                             |    12 +-
 cextern/wcslib/C/tab.c                             |     6 +-
 cextern/wcslib/C/tab.h                             |     8 +-
 cextern/wcslib/C/wcs.c                             |    15 +-
 cextern/wcslib/C/wcs.h                             |    25 +-
 cextern/wcslib/C/wcsbth.l                          |    20 +-
 cextern/wcslib/{ => C}/wcsconfig.h.in              |     4 +-
 cextern/wcslib/{ => C}/wcsconfig_tests.h.in        |     4 +-
 cextern/wcslib/C/wcserr.c                          |     6 +-
 cextern/wcslib/C/wcserr.h                          |    14 +-
 cextern/wcslib/C/wcsfix.c                          |     9 +-
 cextern/wcslib/C/wcsfix.h                          |    17 +-
 cextern/wcslib/C/wcshdr.c                          |     9 +-
 cextern/wcslib/C/wcshdr.h                          |    20 +-
 cextern/wcslib/C/wcslib.h                          |     8 +-
 cextern/wcslib/C/wcsmath.h                         |     6 +-
 cextern/wcslib/C/wcspih.l                          |    17 +-
 cextern/wcslib/C/wcsprintf.c                       |    59 +-
 cextern/wcslib/C/wcsprintf.h                       |    49 +-
 cextern/wcslib/C/wcstrig.c                         |     6 +-
 cextern/wcslib/C/wcstrig.h                         |     6 +-
 cextern/wcslib/C/wcsulex.l                         |     8 +-
 cextern/wcslib/C/wcsunits.c                        |     6 +-
 cextern/wcslib/C/wcsunits.h                        |    15 +-
 cextern/wcslib/C/wcsutil.c                         |     8 +-
 cextern/wcslib/C/wcsutil.h                         |    35 +-
 cextern/wcslib/C/wcsutrn.l                         |     6 +-
 cextern/wcslib/CHANGES                             |    64 +-
 cextern/wcslib/GNUmakefile                         |     9 +-
 cextern/wcslib/INSTALL                             |     8 +-
 cextern/wcslib/README                              |     8 +-
 cextern/wcslib/THANKS                              |     5 +-
 cextern/wcslib/VALIDATION                          |    29 +-
 cextern/wcslib/configure                           |    24 +-
 cextern/wcslib/configure.ac                        |     6 +-
 cextern/wcslib/flavours                            |    14 +-
 cextern/wcslib/makedefs.in                         |     8 +-
 cextern/wcslib/wcsconfig.h.in                      |     4 +-
 cextern/wcslib/wcsconfig_f77.h.in                  |     4 +-
 cextern/wcslib/wcsconfig_tests.h.in                |     4 +-
 cextern/wcslib/wcsconfig_utils.h.in                |     4 +-
 debian/changelog                                   |     7 +
 debian/clean                                       |    12 +-
 debian/control                                     |    38 +-
 debian/patches/series                              |     1 -
 debian/patches/silence_np_warning.patch            |    17 -
 debian/python-astropy-legacy.install               |     3 -
 debian/python3-astropy-legacy.install              |     3 -
 debian/rules                                       |     5 +-
 debian/watch                                       |     2 +-
 docs/Makefile                                      |     2 +-
 docs/_static/timer_prediction_pow10.png            |   Bin 0 -> 28453 bytes
 docs/conf.py                                       |    36 +-
 docs/{configs => config}/index.rst                 |    13 +-
 docs/constants/index.rst                           |    20 +-
 docs/{nddata => convolution}/images/astropy.png    |   Bin
 docs/{nddata => convolution}/images/original.png   |   Bin
 docs/{nddata => convolution}/images/scipy.png      |   Bin
 docs/convolution/index.rst                         |   132 +
 docs/convolution/kernels.rst                       |   317 +
 docs/convolution/using.rst                         |    94 +
 docs/coordinates/angles.rst                        |   184 +-
 docs/coordinates/creating.rst                      |    97 +-
 docs/coordinates/distances.rst                     |    83 +-
 docs/coordinates/formatting.rst                    |    25 +-
 docs/coordinates/index.rst                         |   162 +-
 docs/coordinates/matching.rst                      |    38 +
 docs/coordinates/separations.rst                   |    26 +-
 docs/coordinates/sgr-example.py                    |    95 +-
 docs/coordinates/sgr-example.rst                   |   269 +-
 docs/coordinates/transforming.rst                  |    64 +-
 docs/cosmology/index.rst                           |   284 +-
 docs/credits.rst                                   |    33 +-
 docs/development/building.rst                      |    78 +
 docs/development/ccython.rst                       |    74 +
 docs/development/codeguide.rst                     |   349 +-
 docs/development/docguide.rst                      |   620 +-
 docs/development/{docguide.rst => docrules.rst}    |   115 +-
 .../{building_packaging.rst => releasing.rst}      |   621 +-
 docs/development/sphinxext.rst                     |    26 -
 docs/development/testguide.rst                     |   215 +-
 docs/development/vision.rst                        |     2 +
 docs/development/workflow/development_workflow.rst |    16 +-
 docs/development/workflow/git_links.inc            |     2 +-
 docs/development/workflow/index.rst                |     5 +-
 docs/development/workflow/this_project.inc         |     4 -
 docs/getting_started.rst                           |    28 +-
 docs/index.rst                                     |    41 +-
 docs/install.rst                                   |    76 +-
 docs/io/ascii/fixed_width_gallery.rst              |   149 +-
 docs/io/ascii/index.rst                            |    94 +-
 docs/io/ascii/read.rst                             |   191 +-
 docs/io/ascii/write.rst                            |    97 +-
 docs/io/fits/appendix/faq.rst                      |    10 +-
 docs/io/fits/appendix/history.rst                  |   127 +-
 docs/io/fits/index.rst                             |     9 +-
 docs/io/fits/usage/table.rst                       |     9 +-
 docs/io/registry.rst                               |    18 +-
 docs/io/unified.rst                                |   292 +-
 docs/io/votable/index.rst                          |    45 +-
 docs/io/votable/references.txt                     |     1 +
 docs/known_issues.rst                              |    31 +-
 docs/modeling/algorithms.rst                       |    61 +
 docs/modeling/design.rst                           |    28 +
 docs/modeling/fitting.rst                          |   112 +
 docs/modeling/index.rst                            |   194 +
 docs/modeling/models.rst                           |   193 +
 docs/modeling/new.rst                              |   239 +
 docs/modeling/parameters.rst                       |    95 +
 docs/nddata/convolution.rst                        |   112 -
 docs/nddata/index.rst                              |     9 +-
 docs/nddata/nddata.rst                             |    14 +-
 docs/overview.rst                                  |    26 +-
 docs/rtd-pip-requirements                          |     3 +-
 docs/stability.rst                                 |    50 +-
 docs/table/access_table.rst                        |    51 +-
 docs/table/construct_table.rst                     |   213 +-
 docs/table/index.rst                               |    71 +-
 docs/table/io.rst                                  |    44 +-
 docs/table/masking.rst                             |    37 +-
 docs/table/modify_table.rst                        |    63 +-
 docs/table/operations.rst                          |   748 +
 docs/time/index.rst                                |   281 +-
 docs/time/references.txt                           |     1 +
 docs/units/combining_and_defining.rst              |    25 +-
 docs/units/conversion.rst                          |    32 +-
 docs/units/decomposing_and_composing.rst           |    99 +-
 docs/units/equivalencies.rst                       |   307 +-
 docs/units/format.rst                              |   166 +-
 docs/units/index.rst                               |   146 +-
 docs/units/quantity.rst                            |   262 +-
 docs/units/standard_units.rst                      |    80 +-
 docs/utils/index.rst                               |    11 +
 docs/vo/client.rst                                 |   529 +
 docs/vo/conesearch.rst                             |   181 +
 docs/vo/images/astropy_vo_flowchart.png            |   Bin 0 -> 20057 bytes
 docs/vo/images/client_predict_search_n.png         |   Bin 0 -> 35668 bytes
 docs/vo/images/client_predict_search_t.png         |   Bin 0 -> 28522 bytes
 docs/vo/images/validator_html_1.png                |   Bin 0 -> 28152 bytes
 docs/vo/images/validator_html_2.png                |   Bin 0 -> 56370 bytes
 docs/vo/images/validator_html_3.png                |   Bin 0 -> 45038 bytes
 docs/vo/images/validator_html_4.png                |   Bin 0 -> 65404 bytes
 docs/vo/index.rst                                  |    32 +
 docs/vo/validator.rst                              |   368 +
 docs/warnings.rst                                  |     3 +-
 docs/wcs/examples/from_file.py                     |    47 +-
 docs/wcs/examples/programmatic.py                  |     3 -
 docs/wcs/index.rst                                 |    26 +
 docs/whatsnew/0.2.rst                              |    12 +-
 docs/whatsnew/0.3.rst                              |   510 +
 docs/whatsnew/index.rst                            |     1 +
 licenses/ERFA.rst                                  |    53 +
 licenses/FUTURES_LICENSE.rst                       |    21 +
 licenses/SIX_LICENSE.rst                           |    18 +
 licenses/SOFA.rst                                  |    97 -
 scripts/wcslint                                    |     5 +
 setup.cfg                                          |     4 +-
 setup.py                                           |    51 +-
 652 files changed, 113646 insertions(+), 77823 deletions(-)
 copy astropy/{wcs/tests/__init__.py => config/setup_package.py} (62%)
 copy astropy/{wcs/tests/__init__.py => constants/setup_package.py} (62%)
 create mode 100644 astropy/convolution/__init__.py
 rename astropy/{nddata => }/convolution/boundary_extend.c (88%)
 rename astropy/{nddata => }/convolution/boundary_extend.pyx (99%)
 rename astropy/{nddata => }/convolution/boundary_fill.c (89%)
 rename astropy/{nddata => }/convolution/boundary_fill.pyx (99%)
 copy astropy/{nddata => }/convolution/boundary_none.c (86%)
 rename astropy/{nddata => }/convolution/boundary_none.pyx (93%)
 rename astropy/{nddata => }/convolution/boundary_wrap.c (89%)
 rename astropy/{nddata => }/convolution/boundary_wrap.pyx (99%)
 rename astropy/{nddata => }/convolution/convolve.py (89%)
 create mode 100644 astropy/convolution/core.py
 create mode 100644 astropy/convolution/kernels.py
 rename astropy/{nddata/convolution => convolution/tests}/__init__.py (100%)
 rename astropy/{nddata => }/convolution/tests/test_convolve.py (92%)
 rename astropy/{nddata => }/convolution/tests/test_convolve_fft.py (60%)
 rename astropy/{nddata => }/convolution/tests/test_convolve_kernels.py (51%)
 rename astropy/{nddata => }/convolution/tests/test_convolve_speeds.py (80%)
 create mode 100644 astropy/convolution/tests/test_discretize.py
 create mode 100644 astropy/convolution/tests/test_kernel_class.py
 create mode 100644 astropy/convolution/utils.py
 mode change 100755 => 100644 astropy/coordinates/angle_utilities.py
 create mode 100644 astropy/coordinates/matching.py
 create mode 100644 astropy/coordinates/old_builtin_systems_names.py
 create mode 100644 astropy/coordinates/tests/test_angular_separation.py
 create mode 100644 astropy/coordinates/tests/test_matching.py
 delete mode 100644 astropy/coordinates/tests/test_sphere_ang_dists.py
 copy astropy/{wcs/tests/__init__.py => extern/setup_package.py} (63%)
 create mode 100644 astropy/extern/six.py
 create mode 100644 astropy/io/fits/connect.py
 create mode 100644 astropy/io/fits/tests/test_connect.py
 create mode 100644 astropy/io/votable/data/VOTable.v1.3.xsd
 create mode 100644 astropy/io/votable/tests/data/nonstandard_units.xml
 copy astropy/io/votable/tests/data/{regression.bin.tabledata.truth.xml => regression.bin.tabledata.truth.1.1.xml} (99%)
 rename astropy/io/votable/tests/data/{regression.bin.tabledata.truth.xml => regression.bin.tabledata.truth.1.3.xml} (94%)
 create mode 100644 astropy/modeling/__init__.py
 create mode 100644 astropy/modeling/core.py
 create mode 100644 astropy/modeling/fitting.py
 create mode 100644 astropy/modeling/functional_models.py
 create mode 100644 astropy/modeling/models.py
 create mode 100644 astropy/modeling/parameters.py
 create mode 100644 astropy/modeling/polynomial.py
 create mode 100644 astropy/modeling/powerlaws.py
 create mode 100644 astropy/modeling/projections.py
 create mode 100644 astropy/modeling/rotations.py
 copy astropy/{coordinates => modeling}/setup_package.py (50%)
 rename astropy/{nddata/convolution => modeling}/tests/__init__.py (100%)
 create mode 100644 astropy/modeling/tests/data/1904-66_AZP.fits
 copy astropy/{wcs/tests => modeling/tests/data}/__init__.py (51%)
 create mode 100644 astropy/modeling/tests/data/idcompspec.fits
 create mode 100644 astropy/modeling/tests/example_models.py
 create mode 100644 astropy/modeling/tests/irafutil.py
 create mode 100644 astropy/modeling/tests/test_constraints.py
 create mode 100644 astropy/modeling/tests/test_fitters.py
 create mode 100644 astropy/modeling/tests/test_functional_models.py
 create mode 100644 astropy/modeling/tests/test_input.py
 create mode 100644 astropy/modeling/tests/test_models.py
 create mode 100644 astropy/modeling/tests/test_parameters.py
 create mode 100644 astropy/modeling/tests/test_projections.py
 create mode 100644 astropy/modeling/tests/test_rotations.py
 create mode 100644 astropy/modeling/utils.py
 delete mode 100644 astropy/nddata/convolution/make_kernel.py
 delete mode 100644 astropy/nddata/convolution/tests/test_make_kernel.py
 create mode 100644 astropy/nddata/setup_package.py
 delete mode 100644 astropy/sphinx/themes/bootstrap-astropy/static/astropy_docs_32.png
 create mode 100644 astropy/sphinx/themes/bootstrap-astropy/static/astropy_logo_32.png
 create mode 100644 astropy/stats/setup_package.py
 rename astropy/{nddata/convolution/boundary_none.c => table/_np_utils.c} (59%)
 create mode 100644 astropy/table/_np_utils.pyx
 create mode 100644 astropy/table/data/demo_page.css
 create mode 100644 astropy/table/data/demo_table.css
 create mode 100644 astropy/table/data/jquery-1.10.2.min.js
 create mode 100644 astropy/table/data/jquery-ui.css
 create mode 100644 astropy/table/data/jquery.dataTables.min.js
 create mode 100644 astropy/table/groups.py
 create mode 100644 astropy/table/jsviewer.py
 create mode 100644 astropy/table/np_utils.py
 create mode 100644 astropy/table/operations.py
 create mode 100644 astropy/table/setup_package.py
 create mode 100644 astropy/table/tests/test_groups.py
 create mode 100644 astropy/table/tests/test_np_utils.py
 create mode 100644 astropy/table/tests/test_operations.py
 delete mode 100644 astropy/tests/compat.py
 rename astropy/time/{sofa_time.c => erfa_time.c} (82%)
 rename astropy/time/{sofa_time.pyx => erfa_time.pyx} (86%)
 create mode 100644 astropy/time/tests/test_comparisons.py
 create mode 100644 astropy/time/tests/test_precision.py
 create mode 100644 astropy/time/tests/test_quantity_interaction.py
 create mode 100644 astropy/time/tests/test_ut1.py
 create mode 100644 astropy/units/cds.py
 create mode 100644 astropy/units/quantity_helper.py
 create mode 100644 astropy/units/setup_package.py
 create mode 100644 astropy/units/tests/test_equivalencies.py
 create mode 100644 astropy/units/tests/test_quantity_array_methods.py
 create mode 100644 astropy/units/tests/test_quantity_non_ufuncs.py
 create mode 100644 astropy/units/tests/test_quantity_ufuncs.py
 create mode 100644 astropy/utils/compat/_argparse_py2/__init__.py
 rename astropy/utils/compat/{_fractions_27.py => _fractions_py2/__init__.py} (100%)
 delete mode 100644 astropy/utils/compat/_gzip_32.py
 rename astropy/utils/compat/{_gzip_27.py => _gzip_py2/__init__.py} (100%)
 create mode 100644 astropy/utils/compat/_odict_py2/__init__.py
 create mode 100644 astropy/utils/compat/_subprocess_py2/__init__.py
 create mode 100644 astropy/utils/compat/futures/__init__.py
 create mode 100644 astropy/utils/compat/futures/_base.py
 create mode 100644 astropy/utils/compat/futures/process.py
 create mode 100644 astropy/utils/compat/futures/thread.py
 create mode 100644 astropy/utils/compat/subprocess.py
 create mode 100644 astropy/utils/exceptions.py
 create mode 100644 astropy/utils/iers/__init__.py
 create mode 100644 astropy/utils/iers/data/ReadMe.eopc04_IAU2000
 create mode 100644 astropy/utils/iers/data/ReadMe.finals2000A
 create mode 100644 astropy/utils/iers/data/eopc04_IAU2000.62-now
 create mode 100644 astropy/utils/iers/iers.py
 create mode 100644 astropy/utils/iers/tests/__init__.py
 create mode 100644 astropy/utils/iers/tests/test_iers.py
 create mode 100644 astropy/utils/metadata.py
 create mode 100644 astropy/utils/tests/test_metadata.py
 create mode 100644 astropy/utils/tests/test_timer.py
 create mode 100644 astropy/utils/timer.py
 create mode 100644 astropy/utils/xml/unescaper.py
 copy astropy/{config/tests => vo}/__init__.py (100%)
 copy astropy/{config/tests => vo/client}/__init__.py (100%)
 create mode 100644 astropy/vo/client/async.py
 create mode 100644 astropy/vo/client/conesearch.py
 copy astropy/{coordinates => vo/client}/setup_package.py (57%)
 mode change 100644 => 100755
 copy astropy/{config => vo/client}/tests/__init__.py (100%)
 create mode 100644 astropy/vo/client/tests/data/conesearch_error1.xml
 create mode 100644 astropy/vo/client/tests/data/conesearch_error2.xml
 create mode 100644 astropy/vo/client/tests/data/conesearch_error3.xml
 create mode 100644 astropy/vo/client/tests/data/conesearch_error4.xml
 create mode 100644 astropy/vo/client/tests/test_vo.py
 create mode 100644 astropy/vo/client/vos_catalog.py
 copy astropy/{config/tests => vo/validator}/__init__.py (100%)
 create mode 100644 astropy/vo/validator/data/conesearch_urls.txt
 create mode 100644 astropy/vo/validator/inspect.py
 create mode 100755 astropy/vo/validator/setup_package.py
 copy astropy/{config => vo/validator}/tests/__init__.py (100%)
 create mode 100644 astropy/vo/validator/tests/data/conesearch_error.json
 create mode 100644 astropy/vo/validator/tests/data/conesearch_exception.json
 create mode 100644 astropy/vo/validator/tests/data/conesearch_good.json
 create mode 100644 astropy/vo/validator/tests/data/conesearch_good_subset.json
 create mode 100644 astropy/vo/validator/tests/data/conesearch_warn.json
 create mode 100644 astropy/vo/validator/tests/data/listcats1.out
 create mode 100644 astropy/vo/validator/tests/data/listcats2.out
 create mode 100644 astropy/vo/validator/tests/data/printcat.out
 create mode 100644 astropy/vo/validator/tests/data/tally.out
 create mode 100644 astropy/vo/validator/tests/data/vao_conesearch_sites_121107_subset.xml
 create mode 100644 astropy/vo/validator/tests/test_validate.py
 create mode 100644 astropy/vo/validator/tstquery.py
 create mode 100644 astropy/vo/validator/validate.py
 rename astropy/wcs/include/{ => astropy_wcs}/astropy_wcs.h (100%)
 copy astropy/wcs/include/{ => astropy_wcs}/astropy_wcs_api.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/distortion.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/distortion_wrap.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/docstrings.h (88%)
 rename astropy/wcs/include/{ => astropy_wcs}/isnan.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/pipeline.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/pyutil.h (99%)
 rename astropy/wcs/include/{ => astropy_wcs}/sip.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/sip_wrap.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/str_list_proxy.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/unit_list_proxy.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/util.h (100%)
 copy astropy/wcs/include/{ => astropy_wcs}/wcsconfig.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/wcslib_tabprm_wrap.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/wcslib_units_wrap.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/wcslib_wrap.h (100%)
 rename astropy/wcs/include/{ => astropy_wcs}/wcslib_wtbarr_wrap.h (100%)
 create mode 100644 astropy/wcs/tests/data/defunct_keywords.hdr
 create mode 100644 astropy/wcs/tests/data/validate.fits
 create mode 100644 astropy/wcs/tests/data/validate.txt
 create mode 100644 astropy/wcs/wcslint.py
 create mode 100644 cextern/erfa/erfa.c
 create mode 100644 cextern/erfa/erfa.h
 delete mode 100644 cextern/sofa/sofa.c
 delete mode 100644 cextern/sofa/sofa.h
 delete mode 100644 cextern/sofa/sofam.h
 copy cextern/wcslib/{ => C}/makedefs.in (97%)
 copy cextern/wcslib/{ => C}/wcsconfig.h.in (80%)
 copy cextern/wcslib/{ => C}/wcsconfig_tests.h.in (87%)
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/silence_np_warning.patch
 delete mode 100644 debian/python-astropy-legacy.install
 delete mode 100644 debian/python3-astropy-legacy.install
 create mode 100644 docs/_static/timer_prediction_pow10.png
 rename docs/{configs => config}/index.rst (97%)
 rename docs/{nddata => convolution}/images/astropy.png (100%)
 rename docs/{nddata => convolution}/images/original.png (100%)
 rename docs/{nddata => convolution}/images/scipy.png (100%)
 create mode 100644 docs/convolution/index.rst
 create mode 100644 docs/convolution/kernels.rst
 create mode 100644 docs/convolution/using.rst
 create mode 100644 docs/coordinates/matching.rst
 create mode 100644 docs/development/building.rst
 create mode 100644 docs/development/ccython.rst
 copy docs/development/{docguide.rst => docrules.rst} (84%)
 rename docs/development/{building_packaging.rst => releasing.rst} (69%)
 delete mode 100644 docs/development/sphinxext.rst
 create mode 100644 docs/modeling/algorithms.rst
 create mode 100644 docs/modeling/design.rst
 create mode 100644 docs/modeling/fitting.rst
 create mode 100644 docs/modeling/index.rst
 create mode 100644 docs/modeling/models.rst
 create mode 100644 docs/modeling/new.rst
 create mode 100644 docs/modeling/parameters.rst
 delete mode 100644 docs/nddata/convolution.rst
 create mode 100644 docs/table/operations.rst
 create mode 100644 docs/vo/client.rst
 create mode 100644 docs/vo/conesearch.rst
 create mode 100644 docs/vo/images/astropy_vo_flowchart.png
 create mode 100644 docs/vo/images/client_predict_search_n.png
 create mode 100644 docs/vo/images/client_predict_search_t.png
 create mode 100644 docs/vo/images/validator_html_1.png
 create mode 100644 docs/vo/images/validator_html_2.png
 create mode 100644 docs/vo/images/validator_html_3.png
 create mode 100644 docs/vo/images/validator_html_4.png
 create mode 100644 docs/vo/index.rst
 create mode 100644 docs/vo/validator.rst
 create mode 100644 docs/whatsnew/0.3.rst
 create mode 100644 licenses/ERFA.rst
 create mode 100644 licenses/FUTURES_LICENSE.rst
 create mode 100644 licenses/SIX_LICENSE.rst
 delete mode 100644 licenses/SOFA.rst
 create mode 100755 scripts/wcslint

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-astropy.git



More information about the debian-science-commits mailing list