8000 FutureWarning with Numpy 1.10 · Issue #5806 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content
FutureWarning with Numpy 1.10 #5806
Closed
Closed
@divenex

Description

@divenex

I found a couple of FutureWarning on Windows with Python 3.5.1, Numpy 1.10.1, Matplotlib 1.5.0. These were not present with Numpy 1.9.

Here is a minimal working example:

import numpy as np
import matplotlib.pyplot as plt

asp = np.array([1])
plt.subplot(111, aspect=asp)

mrk = np.array([[0, 0], [1, 0], [1, 1], [0, 1]])
plt.plot([0.3, 1.7, 0.6], marker=mrk, ms=30)

The resulting output is

Miniconda3\lib\site-packages\matplotlib\axes\_base.py:1209: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
    if aspect == 'normal':
Miniconda3\lib\site-packages\matplotlib\axes\_base.py:1214: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
    elif aspect in ('equal', 'auto'):
Miniconda3\lib\site-packages\matplotlib\lines.py:851: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
    if self._marker.get_marker() in ('.', ','):
Miniconda3\lib\site-packages\matplotlib\lines.py:801: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
    if marker.get_marker() != ',':

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0