[Debian-astro-commits] [python-astropy] 02/04: Merge branch 'upstream' into debian

Ole Streicher olebole at moszumanska.debian.org
Sun Jun 12 08:51:22 UTC 2016


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

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

commit 4c32094958216c9a29a5dabf135aab2d288fa29f
Merge: 2fde253 a5b151f
Author: Ole Streicher <olebole at debian.org>
Date:   Sun Jun 12 10:26:52 2016 +0200

    Merge branch 'upstream' into debian

 CHANGES.rst                                        |   692 +-
 PKG-INFO                                           |     4 +-
 README.rst                                         |     3 +
 astropy/__init__.py                                |    29 +-
 astropy/_erfa/core.c                               |   496 +
 astropy/_erfa/core.py                              |  1637 +-
 astropy/_erfa/erfa_generator.py                    |     8 +-
 astropy/_erfa/setup_package.py                     |     2 +-
 astropy/_erfa/tests/test_erfa.py                   |    59 +
 astropy/analytic_functions/blackbody.py            |     4 +-
 astropy/analytic_functions/tests/test_blackbody.py |     2 -
 astropy/config/configuration.py                    |   348 +-
 astropy/config/tests/test_configs.py               |   157 +-
 astropy/constants/constant.py                      |     2 +-
 astropy/constants/si.py                            |     4 +
 astropy/convolution/boundary_extend.c              |  2136 +-
 astropy/convolution/boundary_fill.c                |  2150 +-
 astropy/convolution/boundary_none.c                |  1854 +-
 astropy/convolution/boundary_wrap.c                |  2164 +-
 astropy/convolution/kernels.py                     |    12 +-
 astropy/convolution/tests/test_discretize.py       |     3 +-
 astropy/convolution/tests/test_pickle.py           |     1 -
 astropy/coordinates/__init__.py                    |     2 +
 astropy/coordinates/angle_utilities.py             |     4 +-
 astropy/coordinates/angles.py                      |    30 +-
 astropy/coordinates/baseframe.py                   |   164 +-
 astropy/coordinates/builtin_frames/__init__.py     |    11 +-
 astropy/coordinates/builtin_frames/altaz.py        |     3 +
 astropy/coordinates/builtin_frames/cirs.py         |     3 +
 .../builtin_frames/cirs_observed_transforms.py     |     2 +-
 astropy/coordinates/builtin_frames/ecliptic.py     |     9 +
 .../builtin_frames/ecliptic_transforms.py          |    25 +-
 astropy/coordinates/builtin_frames/fk4.py          |     7 +-
 astropy/coordinates/builtin_frames/fk5.py          |     3 +
 astropy/coordinates/builtin_frames/galactic.py     |     3 +
 .../coordinates/builtin_frames/galactocentric.py   |     3 +
 astropy/coordinates/builtin_frames/gcrs.py         |    12 +-
 astropy/coordinates/builtin_frames/hcrs.py         |    61 +
 astropy/coordinates/builtin_frames/icrs.py         |     3 +
 .../builtin_frames/icrs_cirs_transforms.py         |   155 +-
 .../intermediate_rotation_transforms.py            |     2 +-
 astropy/coordinates/builtin_frames/itrs.py         |     3 +-
 astropy/coordinates/builtin_frames/skyoffset.py    |   216 +
 .../coordinates/builtin_frames/supergalactic.py    |     4 +-
 astropy/coordinates/builtin_frames/utils.py        |   149 +-
 astropy/coordinates/calculation.py                 |   132 +
 astropy/coordinates/distances.py                   |     2 -
 astropy/coordinates/earth.py                       |    39 +-
 astropy/coordinates/funcs.py                       |    23 +-
 astropy/coordinates/name_resolve.py                |    22 +-
 astropy/coordinates/orbital_elements.py            |   247 +
 astropy/coordinates/representation.py              |    88 +-
 astropy/coordinates/sky_coordinate.py              |    95 +-
 astropy/coordinates/solar_system.py                |   390 +
 .../coordinates/tests/accuracy/test_altaz_icrs.py  |    69 +-
 .../coordinates/tests/accuracy/test_ecliptic.py    |     3 +-
 .../tests/accuracy/test_fk4_no_e_fk4.py            |     1 -
 .../tests/accuracy/test_fk4_no_e_fk5.py            |     1 -
 .../tests/accuracy/test_galactic_fk4.py            |     1 -
 .../coordinates/tests/accuracy/test_icrs_fk5.py    |     1 -
 astropy/coordinates/tests/test_angles.py           |     9 -
 .../coordinates/tests/test_angular_separation.py   |     1 -
 astropy/coordinates/tests/test_api_ape5.py         |     2 +-
 astropy/coordinates/tests/test_arrays.py           |    37 +-
 astropy/coordinates/tests/test_atc_replacements.py |    38 +
 .../tests/test_celestial_transformations.py        |   134 +-
 astropy/coordinates/tests/test_formatting.py       |     1 -
 astropy/coordinates/tests/test_frames.py           |    39 +-
 astropy/coordinates/tests/test_iau_fullstack.py    |    14 +-
 .../tests/test_intermediate_transformations.py     |   103 +-
 astropy/coordinates/tests/test_name_resolve.py     |    14 +-
 astropy/coordinates/tests/test_pickle.py           |     2 +-
 astropy/coordinates/tests/test_regression.py       |    36 +-
 astropy/coordinates/tests/test_representation.py   |    49 +-
 astropy/coordinates/tests/test_sky_coord.py        |   114 +-
 .../tests/test_skyoffset_transformations.py        |   290 +
 astropy/coordinates/tests/test_solar_system.py     |   293 +
 astropy/coordinates/tests/test_transformations.py  |    10 +-
 .../coordinates/tests/test_unit_representation.py  |     2 +-
 astropy/coordinates/transformations.py             |    13 +-
 astropy/cosmology/core.py                          |   118 +-
 astropy/cosmology/funcs.py                         |     2 -
 astropy/cosmology/scalar_inv_efuncs.c              |  1735 +-
 astropy/cosmology/tests/test_cosmology.py          |   122 +-
 astropy/cosmology/tests/test_pickle.py             |     2 -
 astropy/cython_version.py                          |     2 +-
 astropy/extern/pytest.py                           |  6929 +++---
 astropy/io/ascii/__init__.py                       |     1 +
 astropy/io/ascii/core.py                           |    21 +-
 astropy/io/ascii/cparser.c                         |  5517 ++---
 astropy/io/ascii/daophot.py                        |     3 +-
 astropy/io/ascii/ecsv.py                           |     2 +-
 astropy/io/ascii/fastbasic.py                      |    10 +-
 astropy/io/ascii/fixedwidth.py                     |     4 +-
 astropy/io/ascii/html.py                           |    51 +-
 astropy/io/ascii/ipac.py                           |     8 +-
 astropy/io/ascii/rst.py                            |    60 +
 astropy/io/ascii/setup_package.py                  |     1 +
 astropy/io/ascii/sextractor.py                     |    60 +-
 astropy/io/ascii/tests/common.py                   |     2 -
 astropy/io/ascii/tests/t/ipac.dat                  |     2 +-
 astropy/io/ascii/tests/t/sextractor3.dat           |    10 +
 .../io/ascii/tests/test_cds_header_from_readme.py  |     1 -
 astropy/io/ascii/tests/test_compressed.py          |     4 +-
 astropy/io/ascii/tests/test_connect.py             |     2 +-
 astropy/io/ascii/tests/test_ecsv.py                |    12 +-
 astropy/io/ascii/tests/test_html.py                |   140 +-
 astropy/io/ascii/tests/test_read.py                |    98 +-
 astropy/io/ascii/tests/test_rst.py                 |   173 +
 astropy/io/ascii/tests/test_types.py               |     1 -
 astropy/io/ascii/tests/test_write.py               |    46 +-
 astropy/io/ascii/ui.py                             |    20 +-
 astropy/io/fits/__init__.py                        |    15 +-
 astropy/io/fits/_numpy_hacks.py                    |     1 -
 astropy/io/fits/column.py                          |    60 +-
 astropy/io/fits/connect.py                         |    87 +-
 astropy/io/fits/convenience.py                     |   112 +-
 astropy/io/fits/file.py                            |    23 +-
 astropy/io/fits/fitsrec.py                         |    30 +-
 astropy/io/fits/hdu/groups.py                      |     4 +
 astropy/io/fits/hdu/hdulist.py                     |     5 +-
 astropy/io/fits/hdu/image.py                       |    85 +-
 astropy/io/fits/hdu/streaming.py                   |     6 +-
 astropy/io/fits/hdu/table.py                       |    10 +-
 astropy/io/fits/header.py                          |    66 +-
 astropy/io/fits/scripts/fitscheck.py               |    10 +-
 astropy/io/fits/scripts/fitsheader.py              |     2 +-
 astropy/io/fits/setup_package.py                   |     2 +-
 astropy/io/fits/tests/test_checksum.py             |     1 -
 astropy/io/fits/tests/test_connect.py              |     2 -
 astropy/io/fits/tests/test_convenience.py          |    36 +
 astropy/io/fits/tests/test_core.py                 |    28 +-
 astropy/io/fits/tests/test_header.py               |    48 +-
 astropy/io/fits/tests/test_image.py                |    64 +-
 astropy/io/fits/tests/test_table.py                |     6 +-
 astropy/io/fits/tests/test_uint.py                 |     1 -
 astropy/io/fits/util.py                            |    41 +-
 astropy/io/misc/pickle_helpers.py                  |     4 +-
 astropy/io/misc/tests/test_hdf5.py                 |    11 +-
 astropy/io/registry.py                             |    67 +-
 astropy/io/tests/test_registry.py                  |    42 +-
 astropy/io/votable/converters.py                   |     2 +-
 astropy/io/votable/table.py                        |     9 +-
 astropy/io/votable/tests/__init__.py               |     1 -
 astropy/io/votable/tests/converter_test.py         |    10 +
 astropy/io/votable/tests/data/gemini.xml           |   168 +
 astropy/io/votable/tests/table_test.py             |    19 +
 astropy/io/votable/tests/vo_test.py                |   137 +-
 astropy/io/votable/tree.py                         |    13 +-
 astropy/io/votable/util.py                         |     3 +-
 astropy/io/votable/validator/html.py               |     5 +-
 astropy/io/votable/volint.py                       |     2 +-
 astropy/io/votable/xmlutil.py                      |     2 +-
 astropy/logger.py                                  |    80 +-
 astropy/modeling/__init__.py                       |     1 -
 astropy/modeling/_compound_deprecated.py           |   420 -
 astropy/modeling/core.py                           |   222 +-
 astropy/modeling/fitting.py                        |    11 +-
 astropy/modeling/functional_models.py              |   331 +-
 astropy/modeling/models.py                         |     2 +-
 astropy/modeling/parameters.py                     |   184 +-
 astropy/modeling/powerlaws.py                      |     4 +-
 astropy/modeling/rotations.py                      |   270 +-
 astropy/modeling/setup_package.py                  |     2 +-
 astropy/modeling/src/projections.c                 |   708 +-
 astropy/modeling/tests/test_compound.py            |    67 +-
 astropy/modeling/tests/test_core.py                |    17 +-
 astropy/modeling/tests/test_fitters.py             |    27 +
 astropy/modeling/tests/test_functional_models.py   |    28 +-
 astropy/modeling/tests/test_models.py              |   125 +-
 astropy/modeling/tests/test_parameters.py          |     2 +-
 astropy/modeling/tests/test_rotations.py           |    78 +-
 astropy/nddata/__init__.py                         |     1 +
 astropy/nddata/compat.py                           |     5 +-
 astropy/nddata/flag_collection.py                  |     3 +-
 astropy/nddata/mixins/ndarithmetic.py              |   777 +-
 astropy/nddata/mixins/ndslicing.py                 |   127 +-
 astropy/nddata/mixins/tests/test_ndarithmetic.py   |  1409 +-
 astropy/nddata/mixins/tests/test_ndio.py           |     8 +-
 astropy/nddata/mixins/tests/test_ndslicing.py      |   163 +
 astropy/nddata/nddata.py                           |   365 +-
 astropy/nddata/nddata_base.py                      |    65 +-
 astropy/nddata/nddata_withmixins.py                |    74 +
 astropy/nddata/nduncertainty.py                    |   845 +-
 astropy/nddata/tests/test_compat.py                |    26 +-
 astropy/nddata/tests/test_flag_collection.py       |     2 -
 astropy/nddata/tests/test_nddata.py                |   457 +-
 astropy/nddata/tests/test_nddata_base.py           |    20 +-
 astropy/nddata/tests/test_nduncertainty.py         |   245 +
 astropy/nddata/tests/test_utils.py                 |     5 +-
 astropy/stats/__init__.py                          |     4 +
 astropy/stats/bayesian_blocks.py                   |    19 +-
 astropy/stats/circstats.py                         |   454 +
 astropy/stats/funcs.py                             |   394 +-
 astropy/stats/histogram.py                         |    10 +-
 astropy/stats/info_theory.py                       |   403 +
 astropy/stats/jackknife.py                         |   178 +
 astropy/stats/lombscargle/__init__.py              |     8 +
 astropy/stats/lombscargle/core.py                  |   343 +
 .../stats/lombscargle/implementations/__init__.py  |     8 +
 .../stats/lombscargle/implementations/chi2_impl.py |    88 +
 .../lombscargle/implementations/cython_impl.c      | 23408 +++++++++++++++++++
 .../lombscargle/implementations/cython_impl.pyx    |   249 +
 .../stats/lombscargle/implementations/fast_impl.py |   137 +
 .../lombscargle/implementations/fastchi2_impl.py   |   136 +
 astropy/stats/lombscargle/implementations/main.py  |   228 +
 astropy/stats/lombscargle/implementations/mle.py   |   109 +
 .../lombscargle/implementations/scipy_impl.py      |    74 +
 .../stats/lombscargle/implementations/slow_impl.py |   121 +
 .../lombscargle/implementations/tests/__init__.py  |     0
 .../lombscargle/implementations/tests/test_mle.py  |    53 +
 .../implementations/tests/test_utils.py            |    83 +
 astropy/stats/lombscargle/implementations/utils.py |   182 +
 astropy/stats/lombscargle/tests/__init__.py        |     0
 .../stats/lombscargle/tests/test_lombscargle.py    |   314 +
 astropy/stats/sigma_clipping.py                    |    55 +-
 astropy/stats/tests/test_bayesian_blocks.py        |     8 +-
 astropy/stats/tests/test_circstats.py              |   123 +
 astropy/stats/tests/test_funcs.py                  |   299 +-
 astropy/stats/tests/test_histogram.py              |    10 +-
 astropy/stats/tests/test_info_theory.py            |    74 +
 astropy/stats/tests/test_jackknife.py              |    60 +
 astropy/stats/tests/test_sigma_clipping.py         |    42 +-
 astropy/table/__init__.py                          |     7 +
 astropy/table/_column_mixins.c                     |   338 +-
 astropy/table/_np_utils.c                          |  2177 +-
 astropy/table/column.py                            |    19 +-
 astropy/table/groups.py                            |     3 +-
 astropy/table/index.py                             |     4 +-
 astropy/table/info.py                              |     1 -
 astropy/table/jsviewer.py                          |     8 -
 astropy/table/meta.py                              |     2 +-
 astropy/table/np_utils.py                          |    15 +-
 astropy/table/operations.py                        |   163 +-
 astropy/table/pprint.py                            |    38 +-
 astropy/table/row.py                               |     1 -
 astropy/table/sorted_array.py                      |     1 -
 astropy/table/table.py                             |   162 +-
 astropy/table/tests/conftest.py                    |     4 +-
 astropy/table/tests/test_bst.py                    |     2 -
 astropy/table/tests/test_column.py                 |    31 +
 astropy/table/tests/test_index.py                  |     6 +-
 astropy/table/tests/test_info.py                   |     3 +-
 astropy/table/tests/test_init_table.py             |     3 +-
 astropy/table/tests/test_item_access.py            |     3 -
 astropy/table/tests/test_jsviewer.py               |    34 +
 astropy/table/tests/test_masked.py                 |     1 -
 astropy/table/tests/test_mixin.py                  |     4 +-
 astropy/table/tests/test_operations.py             |    98 +-
 astropy/table/tests/test_pickle.py                 |     1 -
 astropy/table/tests/test_pprint.py                 |    24 +-
 astropy/table/tests/test_table.py                  |   122 +-
 astropy/tests/command.py                           |    24 +-
 astropy/tests/helper.py                            |    63 +-
 astropy/tests/output_checker.py                    |    18 +-
 astropy/tests/pytest_plugins.py                    |    47 +-
 astropy/tests/runner.py                            |     8 +-
 astropy/tests/tests/test_imports.py                |     5 -
 astropy/tests/tests/test_open_file_detection.py    |     1 -
 astropy/tests/tests/test_quantity_helpers.py       |     1 -
 astropy/time/core.py                               |   276 +-
 astropy/time/erfa_time.py                          |    40 -
 astropy/time/formats.py                            |    79 +-
 astropy/time/tests/test_basic.py                   |    81 +-
 astropy/time/tests/test_corrs.py                   |    46 +
 astropy/time/tests/test_ut1.py                     |    22 +-
 astropy/units/astrophys.py                         |     9 +
 astropy/units/cgs.py                               |     2 +-
 astropy/units/core.py                              |    66 +-
 astropy/units/decorators.py                        |     2 +-
 astropy/units/equivalencies.py                     |     4 +-
 astropy/units/format/cds.py                        |     1 -
 astropy/units/format/ogip.py                       |    15 +-
 astropy/units/format/utils.py                      |     4 +-
 astropy/units/function/logarithmic.py              |    23 +-
 astropy/units/imperial.py                          |     4 +-
 astropy/units/quantity.py                          |   138 +-
 astropy/units/quantity_helper.py                   |     3 +-
 .../units/tests/py3_test_quantity_annotations.py   |     2 +-
 astropy/units/tests/test_equivalencies.py          |    11 +-
 astropy/units/tests/test_logarithmic.py            |    18 +-
 astropy/units/tests/test_quantity.py               |    19 +-
 astropy/units/tests/test_quantity_array_methods.py |    21 +-
 astropy/units/tests/test_quantity_decorator.py     |     4 -
 astropy/units/tests/test_quantity_non_ufuncs.py    |     1 -
 astropy/units/tests/test_quantity_ufuncs.py        |    21 +
 astropy/units/tests/test_units.py                  |   129 +-
 astropy/units/utils.py                             |    67 +-
 astropy/utils/argparse.py                          |     2 +-
 astropy/utils/collections.py                       |     2 +-
 astropy/utils/compat/_argparse/__init__.py         |  2363 --
 astropy/utils/compat/_fractions_py2/__init__.py    |   605 -
 astropy/utils/compat/_funcsigs.py                  |     4 +-
 astropy/utils/compat/_gzip_py2/__init__.py         |   509 -
 astropy/utils/compat/_gzip_py3/__init__.py         |   625 -
 astropy/utils/compat/_odict_py2/__init__.py        |   190 -
 astropy/utils/compat/_subprocess_py2/__init__.py   |    38 -
 astropy/utils/compat/_weakset_py2/__init__.py      |   219 -
 astropy/utils/compat/argparse.py                   |    12 +-
 astropy/utils/compat/fractions.py                  |    20 +-
 astropy/utils/compat/gzip.py                       |    17 +-
 astropy/utils/compat/misc.py                       |    31 +-
 astropy/utils/compat/numpycompat.py                |    39 +-
 astropy/utils/compat/odict.py                      |    14 +-
 astropy/utils/compat/subprocess.py                 |    19 +-
 astropy/utils/compat/weakref.py                    |     6 -
 astropy/utils/console.py                           |    40 +-
 astropy/utils/data.py                              |   106 +-
 astropy/utils/data_info.py                         |     3 +-
 astropy/utils/decorators.py                        |   285 +-
 astropy/utils/iers/data/eopc04_IAU2000.62-now      |  6252 ++---
 astropy/utils/iers/iers.py                         |   437 +-
 .../utils/iers/tests/finals2000A-2016-02-30-test   |   181 +
 .../utils/iers/tests/finals2000A-2016-04-30-test   |   181 +
 astropy/utils/iers/tests/test_iers.py              |    83 +-
 astropy/utils/introspection.py                     |     2 -
 astropy/utils/metadata.py                          |   315 +-
 astropy/utils/misc.py                              |    45 +-
 astropy/utils/release.py                           |    10 +
 astropy/utils/setup_package.py                     |     2 +
 astropy/utils/state.py                             |   122 +-
 astropy/utils/tests/odict_mapping.py               |   311 -
 astropy/utils/tests/odict_support.py               |    95 -
 astropy/utils/tests/test_argparse.py               |    22 +
 astropy/utils/tests/test_compat.py                 |     2 -
 astropy/utils/tests/test_console.py                |     2 +-
 astropy/utils/tests/test_data.py                   |    42 +-
 astropy/utils/tests/test_decorators.py             |   191 +-
 astropy/utils/tests/test_fractions.py              |    22 +
 astropy/utils/tests/test_gzip.py                   |    43 +-
 astropy/utils/tests/test_metadata.py               |   113 +-
 astropy/utils/tests/test_misc.py                   |    30 +
 astropy/utils/tests/test_odict.py                  |   286 +-
 astropy/utils/tests/test_state.py                  |    71 -
 astropy/utils/tests/test_subprocess.py             |    21 +
 astropy/utils/tests/test_xml.py                    |    39 +-
 astropy/utils/timer.py                             |     3 +-
 astropy/utils/xml/unescaper.py                     |    10 +-
 astropy/utils/xml/writer.py                        |    56 +
 astropy/version.py                                 |    12 +-
 astropy/visualization/interval.py                  |    54 +-
 astropy/visualization/mpl_normalize.py             |     2 +-
 astropy/visualization/scripts/fits2bitmap.py       |     2 +-
 .../scripts/tests/test_fits2bitmap.py              |     2 +-
 astropy/visualization/tests/test_histogram.py      |     2 +-
 astropy/visualization/tests/test_interval.py       |    23 +-
 astropy/visualization/tests/test_norm.py           |     2 +-
 astropy/visualization/units.py                     |     4 +-
 astropy/visualization/zscale.py                    |   109 +
 astropy/vo/client/conesearch.py                    |     7 +-
 astropy/vo/client/tests/test_conesearch.py         |     8 +-
 astropy/vo/client/tests/test_vos_catalog.py        |    10 +-
 astropy/vo/client/vos_catalog.py                   |    37 +-
 astropy/vo/samp/client.py                          |     1 -
 astropy/vo/samp/hub.py                             |   256 +-
 astropy/vo/samp/hub_proxy.py                       |     1 -
 astropy/vo/samp/hub_script.py                      |     4 +-
 astropy/vo/samp/standard_profile.py                |   285 +-
 astropy/vo/samp/tests/test_client.py               |     1 -
 astropy/vo/samp/tests/test_hub.py                  |    16 +
 astropy/vo/samp/tests/test_standard_profile.py     |     5 +-
 astropy/vo/samp/tests/test_web_profile.py          |     5 +-
 astropy/vo/samp/utils.py                           |     7 +-
 astropy/vo/validator/data/conesearch_urls.txt      |    14 +-
 .../vo/validator/tests/data/conesearch_good.json   |     2 +-
 astropy/vo/validator/tests/data/listcats1.out      |     2 +-
 astropy/vo/validator/tests/data/listcats2.out      |     2 +-
 astropy/vo/validator/tests/data/printcat.out       |     2 +-
 .../data/vao_conesearch_sites_121107_subset.xml    |     2 +-
 astropy/vo/validator/tests/test_validate.py        |     3 +-
 astropy/vo/validator/tstquery.py                   |     2 +-
 astropy/vo/validator/validate.py                   |    28 +-
 astropy/wcs/docstrings.py                          |     2 +-
 astropy/wcs/include/astropy_wcs/docstrings.h       |     2 +-
 astropy/wcs/include/astropy_wcs/pyutil.h           |    14 -
 astropy/wcs/setup_package.py                       |     3 +-
 astropy/wcs/src/docstrings.c                       |    23 +-
 astropy/wcs/src/wcslib_wrap.c                      |     1 +
 astropy/wcs/tests/test_utils.py                    |     5 +-
 astropy/wcs/tests/test_wcs.py                      |    72 +-
 astropy/wcs/tests/test_wcsprm.py                   |     3 +-
 astropy/wcs/utils.py                               |    10 +-
 astropy/wcs/wcs.py                                 |   169 +-
 astropy/wcs/wcslint.py                             |     2 +-
 astropy_helpers/CHANGES.rst                        |    37 +-
 astropy_helpers/README.rst                         |     4 +-
 .../astropy_helpers.egg-info/SOURCES.txt           |     2 +-
 astropy_helpers/astropy_helpers.egg-info/pbr.json  |     1 +
 .../astropy_helpers/commands/_test_compat.py       |     6 +-
 .../astropy_helpers/commands/build_ext.py          |     4 +-
 .../astropy_helpers/commands/build_sphinx.py       |    47 +-
 .../astropy_helpers/commands/setup_package.py      |     1 +
 .../astropy_helpers/compat/subprocess.py           |     3 +-
 astropy_helpers/astropy_helpers/git_helpers.py     |     2 +-
 astropy_helpers/astropy_helpers/setup_helpers.py   |    52 +-
 astropy_helpers/astropy_helpers/sphinx/conf.py     |    45 +-
 .../sphinx/ext/astropyautosummary.py               |     3 +-
 .../sphinx/ext/autodoc_enhancements.py             |    29 +-
 .../astropy_helpers/sphinx/ext/automodapi.py       |    39 +-
 .../astropy_helpers/sphinx/ext/automodsumm.py      |    88 +-
 .../astropy_helpers/sphinx/ext/edit_on_github.py   |     4 +-
 .../astropy_helpers/sphinx/ext/smart_resolver.py   |    13 +-
 .../astropy_helpers/sphinx/ext/tests/__init__.py   |    14 +-
 .../sphinx/ext/tests/test_automodapi.py            |    10 +-
 .../sphinx/ext/tests/test_automodsumm.py           |     4 +-
 .../sphinx/ext/tests/test_docscrape.py             |    45 +-
 .../astropy_helpers/sphinx/ext/tests/test_utils.py |     2 +-
 .../astropy_helpers/sphinx/ext/utils.py            |   113 +
 .../astropy_helpers/sphinx/ext/viewcode.py         |   220 -
 .../sphinx/local/python2_local_links.inv           |   Bin 0 -> 471 bytes
 .../sphinx/local/python2_local_links.txt           |    18 +
 .../sphinx/local/python3_local_links.inv           |   Bin 0 -> 348 bytes
 .../sphinx/local/python3_local_links.txt           |    16 +
 .../astropy_helpers/sphinx/local/python3links.inv  |   Bin 483 -> 0 bytes
 .../astropy_helpers/sphinx/local/python3links.txt  |    20 -
 .../astropy_helpers/sphinx/setup_package.py        |     1 +
 astropy_helpers/astropy_helpers/utils.py           |     1 -
 astropy_helpers/astropy_helpers/version.py         |   206 +-
 astropy_helpers/astropy_helpers/version_helpers.py |     3 +-
 cextern/erfa/README.rst                            |    88 +
 docs/Makefile                                      |     1 +
 docs/conf.py                                       |    27 +-
 docs/constants/index.rst                           |     8 +-
 docs/coordinates/angles.rst                        |     4 +-
 docs/coordinates/frames.rst                        |     8 +-
 docs/coordinates/galactocentric.rst                |     2 +-
 docs/coordinates/index.rst                         |    20 +-
 docs/coordinates/matchsep.rst                      |    67 +-
 docs/coordinates/observing-example.rst             |   144 -
 docs/coordinates/sgr-example.py                    |   118 -
 docs/coordinates/sgr-example.rst                   |   187 -
 docs/coordinates/skycoord.rst                      |     2 +-
 docs/coordinates/solarsystem.rst                   |   120 +
 docs/coordinates/transforming.rst                  |     7 +-
 docs/cosmology/index.rst                           |    11 +-
 docs/credits.rst                                   |     3 +-
 docs/development/affiliated-packages.rst           |    58 +-
 docs/development/ccython.rst                       |    14 +
 docs/development/codeguide.rst                     |    16 +-
 docs/development/docguide.rst                      |     4 +-
 docs/development/releasing.rst                     |   515 +-
 docs/development/scripts.rst                       |     3 +-
 docs/development/testguide.rst                     |    40 +-
 docs/development/workflow/get_devel_version.rst    |     3 +-
 .../workflow/git_edit_workflow_examples.rst        |     4 +-
 docs/development/workflow/virtual_pythons.rst      |     4 +-
 docs/index.rst                                     |     7 +-
 docs/install.rst                                   |    74 +-
 docs/io/ascii/extension_classes.rst                |     1 +
 docs/io/ascii/index.rst                            |     3 +-
 docs/io/ascii/read.rst                             |     6 +-
 docs/io/fits/api/tables.rst                        |     4 +
 docs/io/fits/appendix/faq.rst                      |    97 +-
 docs/io/fits/appendix/header_transition.rst        |     4 +-
 docs/io/fits/images/Blue.jpg                       |   Bin 35560 -> 0 bytes
 docs/io/fits/images/Green.jpg                      |   Bin 33315 -> 0 bytes
 docs/io/fits/images/Hs-2009-14-a-web.jpg           |   Bin 23490 -> 0 bytes
 docs/io/fits/images/Red.jpg                        |   Bin 34623 -> 0 bytes
 docs/io/fits/index.rst                             |    43 +-
 docs/io/fits/usage/examples.rst                    |    69 -
 docs/io/fits/usage/headers.rst                     |    10 +-
 docs/io/fits/usage/image.rst                       |    18 +-
 docs/io/fits/usage/misc.rst                        |     2 +-
 docs/io/fits/usage/table.rst                       |    91 +-
 docs/io/fits/usage/unfamiliar.rst                  |    36 +-
 docs/io/unified.rst                                |    11 +-
 docs/modeling/compound-models.rst                  |    43 +-
 docs/modeling/models.rst                           |    14 +-
 docs/modeling/parameters.rst                       |     2 +-
 docs/nddata/index.rst                              |   195 +-
 docs/nddata/mixins/ndarithmetic.rst                |   421 +-
 docs/nddata/mixins/ndio.rst                        |     2 +
 docs/nddata/mixins/ndslicing.rst                   |   151 +-
 docs/nddata/nddata.rst                             |   394 +-
 docs/nddata/subclassing.rst                        |   584 +-
 docs/nddata/utils.rst                              |    13 +-
 docs/rtd-pip-requirements                          |     5 -
 docs/stats/index.rst                               |    13 +-
 docs/stats/lombscargle.rst                         |   641 +
 docs/table/access_table.rst                        |     4 +-
 docs/table/construct_table.rst                     |   132 +-
 docs/table/index.rst                               |    31 +-
 docs/table/modify_table.rst                        |     2 +-
 docs/table/operations.rst                          |    23 +-
 docs/table/table_repr_html.png                     |   Bin 17283 -> 12979 bytes
 docs/table/table_show_in_nb.png                    |   Bin 0 -> 23540 bytes
 docs/time/index.rst                                |   175 +-
 docs/units/combining_and_defining.rst              |    19 +-
 docs/units/conversion.rst                          |     2 +-
 docs/units/decomposing_and_composing.rst           |     7 +
 docs/units/equivalencies.rst                       |     8 +-
 docs/units/format.rst                              |     4 +-
 docs/units/index.rst                               |     2 +-
 docs/units/quantity.rst                            |    16 +-
 docs/utils/iers.rst                                |   209 +
 docs/utils/index.rst                               |    28 +-
 docs/visualization/normalization.rst               |    11 +-
 docs/vo/conesearch/client.rst                      |   171 +-
 docs/vo/conesearch/index.rst                       |    15 +-
 docs/vo/conesearch/validator.rst                   |    68 +-
 docs/vo/index.rst                                  |     4 +-
 docs/wcs/index.rst                                 |     6 +-
 docs/wcs/references.txt                            |     2 +-
 docs/whatsnew/0.4.rst                              |     2 +-
 docs/whatsnew/1.0.rst                              |     7 +-
 docs/whatsnew/1.2.rst                              |   244 +
 docs/whatsnew/index.rst                            |     1 +
 licenses/NUMDISPLAY_LICENSE.rst                    |    29 +
 pip-requirements                                   |     1 +
 pip-requirements-dev                               |    15 +
 pip-requirements-doc                               |     7 +
 setup.cfg                                          |     9 +-
 setup.py                                           |     2 +-
 513 files changed, 64073 insertions(+), 28779 deletions(-)

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



More information about the Debian-astro-commits mailing list