[AstroPy] Requesting help for Astroplan

Francesco Maggiore framaggi55 at gmail.com
Mon Jan 21 13:25:26 EST 2019


I hope someone could help me about Astroplan installation.
Immediately after installing Astroplan, in fact, I tried to do the test
according to the instructions provided, and it revealed an AssertionError
in scheduling.py.
I attach a full copy of the testing report:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/astropy/attachments/20190121/ed557964/attachment-0001.html>
-------------- next part --------------
============================= test session starts =============================
platform win32 -- Python 3.7.1, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

Running tests with astroplan version 0.4.
Running tests in Anaconda3\lib\site-packages\astroplan.

Date: 2019-01-20T17:39:11

Platform: Windows-10-10.0.17134-SP0

Executable: C:\Users\Francesco\Anaconda3\python.exe

Full Python Version:
3.7.1 (default, Dec 10 2018, 22:54:23) [MSC v.1915 64 bit (AMD64)]

encodings: sys: utf-8, locale: cp1252, filesystem: utf-8
byteorder: little
float info: dig: 15, mant_dig: 15

Numpy: 1.15.4
Scipy: 1.1.0
Matplotlib: 3.0.2
Pandas: 0.23.4
Astropy: 3.1
pytz: 2018.7
pyephem: not available
matplotlib: 3.0.2
nose: 1.3.7
pytest-mpl: 0.10
astropy_helpers: 3.1
Using Astropy options: remote_data: any.

Matplotlib: 3.0.2
Freetype: 2.9.1
rootdir: C:\Users\Francesco, inifile:
plugins: remotedata-0.3.1, openfiles-0.3.1, mpl-0.10, doctestplus-0.2.0, arraydiff-0.3
collected 76 items

Anaconda3\lib\site-packages\astroplan\plots\tests\test_sky.py .          [  1%]
Anaconda3\lib\site-packages\astroplan\tests\test_constraints.py ........ [ 11%]
...............                                                          [ 31%]
Anaconda3\lib\site-packages\astroplan\tests\test_moon.py .               [ 32%]
Anaconda3\lib\site-packages\astroplan\tests\test_observer.py ........... [ 47%]
................                                                         [ 68%]
Anaconda3\lib\site-packages\astroplan\tests\test_periodic.py .....       [ 75%]
Anaconda3\lib\site-packages\astroplan\tests\test_scheduling.py ...F..... [ 86%]
...                                                                      [ 90%]
Anaconda3\lib\site-packages\astroplan\tests\test_target.py ...           [ 94%]
Anaconda3\lib\site-packages\astroplan\tests\test_utils.py ....           [100%]

================================== FAILURES ===================================
__________________________ test_schedule_insert_slot __________________________

    def test_schedule_insert_slot():
        start = Time('2016-02-06 03:00:00')
        schedule = Schedule(start, start + 5*u.hour)
        # testing for when float comparison doesn't work, does it start/end at the right time
        duration = 2*u.hour + 1*u.second
        end_time = start + duration
        block = TransitionBlock.from_duration(duration)
        schedule.insert_slot(end_time - duration, block)
        assert not end_time - duration == start
        assert len(schedule.slots) == 2
        assert schedule.slots[0].start == start
        schedule = Schedule(start, start + 5*u.hour)
        # testing for when float evaluation does work
        duration = 2*u.hour
        end_time = start + duration
        block = TransitionBlock.from_duration(duration)
        schedule.insert_slot(end_time - duration, block)
>       assert end_time - duration == start
E       AssertionError: assert (<Time object: scale='utc' format='iso' value=2016-02-06 05:00:00.000> - <Quantity 2. h>) == <Time object: scale='utc' format='iso' value=2016-02-06 03:00:00.000>

Anaconda3\lib\site-packages\astroplan\tests\test_scheduling.py:86: AssertionError
============================== warnings summary ===============================
Anaconda3\lib\site-packages\_pytest\config\__init__.py:754
  C:\Users\Francesco\Anaconda3\lib\site-packages\_pytest\config\__init__.py:754: PytestWarning: Module already imported so cannot be rewritten: pytest_remotedata
    self._mark_plugins_for_rewrite(hook)
  C:\Users\Francesco\Anaconda3\lib\site-packages\_pytest\config\__init__.py:754: PytestWarning: Module already imported so cannot be rewritten: pytest_openfiles
    self._mark_plugins_for_rewrite(hook)
  C:\Users\Francesco\Anaconda3\lib\site-packages\_pytest\config\__init__.py:754: PytestWarning: Module already imported so cannot be rewritten: pytest_mpl
    self._mark_plugins_for_rewrite(hook)
  C:\Users\Francesco\Anaconda3\lib\site-packages\_pytest\config\__init__.py:754: PytestWarning: Module already imported so cannot be rewritten: pytest_doctestplus
    self._mark_plugins_for_rewrite(hook)
  C:\Users\Francesco\Anaconda3\lib\site-packages\_pytest\config\__init__.py:754: PytestWarning: Module already imported so cannot be rewritten: pytest_arraydiff
    self._mark_plugins_for_rewrite(hook)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_at_night_basic
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_observability_table
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_sun_separation
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_moon_separation
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_moon_illumination
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_months_observable
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_regression_shapes[constraint2]
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_regression_shapes[constraint3]
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_constraints.py::test_event_observable
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_parallactic_angle
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_sunrise_sunset_equator
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_sunrise_sunset_equator_civil_twilight
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_twilight_convenience_funcs
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_solar_transit
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_solar_transit_convenience_methods
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_is_night
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_moon_altaz
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_local_sidereal_time
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_hour_angle
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_tonight
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_observer.py::test_moon_rise_set
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_scheduling.py::test_scheduling_target_down
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:839: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future.
    return super().__eq__(other)

Anaconda3/lib/site-packages/astroplan/tests/test_scheduling.py::test_scheduling_during_day
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_scheduling.py::test_scheduling_moon_up
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)

Anaconda3/lib/site-packages/astroplan/tests/test_target.py::test_get_skycoord
  C:\Users\Francesco\Anaconda3\lib\site-packages\astroplan\utils.py:41: OldEarthOrientationDataWarning: For best precision (on the order of arcseconds), you must download an up-to-date IERS Bulletin A table. To do so, run:

  >>> from astroplan import download_IERS_A
  >>> download_IERS_A()

    warnings.warn(IERS_A_WARNING, OldEarthOrientationDataWarning)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:853: DeprecationWarning: elementwise != comparison failed; this will raise an error in the future.
    return super().__ne__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:853: DeprecationWarning: elementwise != comparison failed; this will raise an error in the future.
    return super().__ne__(other)
  C:\Users\Francesco\Anaconda3\lib\site-packages\astropy\units\quantity.py:853: DeprecationWarning: elementwise != comparison failed; this will raise an error in the future.
    return super().__ne__(other)

-- Docs: https://docs.pytest.org/en/latest/warnings.html
============= 1 failed, 75 passed, 243 warnings in 21.80 seconds ==============
1


More information about the AstroPy mailing list