Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph" #21202

Closed
ManPython opened this issue Sep 27, 2021 · 18 comments

Comments

@ManPython
Copy link

ManPython commented Sep 27, 2021

Bug summary

python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph"
https://stackoverflow.com/questions/34226818/undefined-reference-to-ft-load-glyph-and-other-sdl2-ttf-functions-using-cmak
Does matplotlib support this function on FreeBSD ?

Code for reproduction

#https://stumpy.readthedocs.io/en/latest/Tutorial_STUMPY_Basics.html
%matplotlib inline

import pandas as pd
import stumpy
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as dates
from matplotlib.patches import Rectangle
import datetime as dt

plt.style.use('https://raw.githubusercontent.com/TDAmeritrade/stumpy/main/docs/stumpy.mplstyle')

Actual outcome

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
/tmp/ipykernel_46760/3551042650.py in <module>
----> 1 import matplotlib
      2 matplotlib.__version__
      3 
      4 #https://stumpy.readthedocs.io/en/latest/Tutorial_STUMPY_Basics.html
      5 get_ipython().run_line_magic('matplotlib', 'inline')

 /python3.7/site-packages/matplotlib/__init__.py in <module>
    155 
    156 
--> 157 _check_versions()
    158 
    159 
/venvpython37/lib/python3.7/site-packages/matplotlib/__init__.py in _check_versions()
    140     # Quickfix to ensure Microsoft Visual C++ redistributable
    141     # DLLs are loaded before importing kiwisolver
--> 142     from . import ft2font
    143 
    144     for modname, minver in [

ImportError: /usr/home/ ..ven /lib/python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph"

Expected outcome

Chart

Operating system

FreeBSD

Matplotlib Version

matplotlib-3.4.3

Matplotlib Backend

No response

Python version

Python 3.7.9

Jupyter version

6.0.1

Other libraries

No response

Installation

pip

Conda channel

No response

@ManPython
Copy link
Author

ManPython commented Sep 27, 2021

import matplotlib matplotlib.__version__

For this code this same

python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph"

@jklymak
Copy link
Member

jklymak commented Sep 28, 2021

You have a crossed up install, and probably need to try again. I strongly recommend conda.

@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

What you mind "crossed up install"?
Before report issue I deleted from venv v3.5.0b1, v3.4.3 and install v3.4.2
On each of version import matplotlib give this error.

>>> import matplotlib
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/venv/lib/python3.7/site-packages/matplotlib/__init__.py", line 157, in <module>
    _check_versions()
  File "/venv/lib/python3.7/site-packages/matplotlib/__init__.py", line 142, in _check_versions
    from . import ft2font
ImportError: /venv/lib/python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph"
>>> 

I uninstall again, and no changes.

freetype-config --version
23.4.17

@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

I recommending do test on freebsd12 if can do somebody to confirm that working.

@tacaswell
Copy link
Member

tacaswell commented Sep 28, 2021

I do not think that this is a OS/platform issue (I fully expect Matplotlib to work on freeBSD given that https://www.freshports.org/math/py-matplotlib/ exists), but rather a local installation issue.

How did you install Matplotlib and which freetype so is the linker finding at run time? From the error I believe that you built Matplotlib with one version of freetype, but are finding a different one at run time.

To debug this we will need to know how you installed Matplotlib (did you get a wheel or build it locally?), what compiler you are using (from conversation in gitter I think you are using llvm?), did you use the system freetype? How did you make your virtual env? Without this information (and without access to a freeBSD system set up exactly as your is), the best we can do is guess.

@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

Matplotlib was installed by pip and whole process was done in this way, this same other versions.
LLVM was a second "shoot" when try compile other libs, but on standard was this same problem.
Venv was made by virtualenv

did you use the system freetype?

Not sure about this question. What you mind? I'm not touching this in other way than simple usage of import matplotlib.

@tacaswell tacaswell added Community support Users in need of help. status: needs clarification Issues that need more information to resolve. labels Sep 28, 2021
@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

I try without venv and this same.

pip install matplotlib
Defaulting to user installation because normal site-packages is not writeable
Collecting matplotlib
  Downloading matplotlib-3.3.4.tar.gz (37.9 MB)
     |################################| 37.9 MB 8.5 MB/s 
Collecting cycler>=0.10
  Downloading cycler-0.10.0-py2.py3-none-any.whl (6.5 kB)
Collecting kiwisolver>=1.0.1
  Using cached kiwisolver-1.3.1.tar.gz (53 kB)
Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/site-packages (from matplotlib) (1.16.6)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/site-packages (from matplotlib) (7.0.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/site-packages (from matplotlib) (2.4.7)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/site-packages (from matplotlib) (2.8.1)
Requirement already satisfied: six in /usr/local/lib/python3.6/site-packages (from cycler>=0.10->matplotlib) (1.15.0)
Building wheels for collected packages: matplotlib, kiwisolver
  Building wheel for matplotlib (setup.py) ... done
  Created wheel for matplotlib: filename=matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl
Python 3.6.12 (default, Oct 29 2020, 17:30:47) 
[GCC FreeBSD Clang 10.0.1 (git@github.com:llvm/llvm-project.git llvmorg-10.0.1- on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib
Traceback (most recent call last):
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/user/.local/lib/python3.6/site-packages/matplotlib/__init__.py", line 174, in <module>
    _check_versions()
  File "/home/user/.local/lib/python3.6/site-packages/matplotlib/__init__.py", line 159, in _check_versions
    from . import ft2font

@tacaswell tacaswell added Build and removed status: needs clarification Issues that need more information to resolve. labels Sep 28, 2021
@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

Looks was this type issue related to compiler
#14684

@tacaswell
Copy link
Member

tacaswell commented Sep 28, 2021

Collecting matplotlib
Downloading matplotlib-3.3.4.tar.gz (37.9 MB)
|################################| 37.9 MB 8.5 MB/s

So you are building from source (rather than grabbing a wheel). Something is clearly going wrong with the linking, but without a freebsd system I can not debug further. I suggest looking at the MAKEFILE in the port to see what they are doing.

It might be helpful to post the output of pip install -v matplotlib.

@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

after pip install -v matplotlib.

..part of long log

-cp35-cp35m-manylinux1_x86_64.whl#sha256=5e823d5502fc6c032ac56812a6226f98416b38e1e35b43b5c605a17f6fe19f05 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win32: https://files.pythonhosted.org/packages/7d/c8/05fe170b65c50ab37f7adf4949b7f1d469c68a63a6265c044e91e3f641c8/matplotlib-3.0.0rc2-cp35-cp35m-win32.whl#sha256=44136f1fcec98ee7dc75dfae73d567d10a55906cb2d6468469ec58d133ff44e6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win_amd64: https://files.pythonhosted.org/packages/3c/40/fd9ba9ad3229c414a7720dc94883e5cfe721a5a7958b737be0a4ca23e1c7/matplotlib-3.0.0rc2-cp35-cp35m-win_amd64.whl#sha256=9945cf086cca6fa8f929a8926fbb5cd116cf860eff65395aadda725aabde35c9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/95/4f/7b6e278877e1438ea2a1eb409e63f39996599b295760a83e3046db0bed00/matplotlib-3.0.0rc2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=25cb49bcde226dcf11bdeabe571b8311ee49e50aae92c8105ee35c5820d5ec02 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/94/24/69547d38d74dc6ed158bf52e8681d4cd09938d76d1ac5e455cdb2d810680/matplotlib-3.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl#sha256=95e99a64db209e9bb80731cddb2705021f3d06c08bd52787016c97d5ee5f6f63 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/c2/a5/1da206c2c211dc70d73c819fdb53307a9fd509f0a25b9157b497bcd3a836/matplotlib-3.0.0rc2-cp36-cp36m-win32.whl#sha256=e041d42e6cf4a363aa544e6affedc7ce21c71232147c9f206044e7dfb034bc94 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/88/17/d2a2d8090039a65b7f27c0fea9253971d56687cdaf88196c85223ef9c7c9/matplotlib-3.0.0rc2-cp36-cp36m-win_amd64.whl#sha256=641466e8e16a18bee55cfc10d83219f32297d50a392f4a06e0217a26115be765 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/28/f8/445734e963c5b6680adff0d96a3ddc84eb456c61479ad9a1e5362c212f39/matplotlib-3.0.0rc2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=0f5ab0736e76d1626770aa1d330647806e6609b785801d25fb1b7bfcd0fc502d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/64/a7/950d9aa994095c0c70528595260407b1f93d56ab14b49d1f2f73ca9036f5/matplotlib-3.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl#sha256=aeda129b0149ac5554b11c6a539fb1e5347e6f088752fb79e2b71b76d6e10116 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/dd/27/8e98493d2a14b3b229d50b8b5486119d2512cb8e158b2168ca833e195904/matplotlib-3.0.0rc2-cp37-cp37m-win32.whl#sha256=8538076ab19e02fb8723d9850f7d895c2bf6b7c86e0fa82aedd5051859288b94 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/6c/b9/418bdb694ab6792ef379f076181d764caf03e1f2e86ab504de65ec1f6560/matplotlib-3.0.0rc2-cp37-cp37m-win_amd64.whl#sha256=35ea69c8524f5931949f67134ed5b763706ef99a3f80b7fc3f2994aacf70e362 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Found link https://files.pythonhosted.org/packages/a2/72/36a30d2c444709b832f97685dc2fceccc85dd160b22f3ba8454430ff204e/matplotlib-3.0.0rc2.tar.gz#sha256=c6e83ca4e70dc5d3185ee15544a66fbf25aff6f242d6102c2358cee240963785 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5), version: 3.0.0rc2
  Skipping link: none of the wheel's tags match: cp35-cp35m-macosx_10_10_intel, cp35-cp35m-macosx_10_10_x86_64, cp35-cp35m-macosx_10_6_intel, cp35-cp35m-macosx_10_9_intel, cp35-cp35m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/1a/99/d2676b2e12b690477bcd49850fd9137238c8225a1156ec60ca959b334a27/matplotlib-3.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=77c6edc4e25b36430df8a445195030abc8d5766d068b9aeed1a58a684cc0eb3b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-manylinux1_x86_64: https://files.pythonhosted.org/packages/7b/ca/8b55a66b7ce426329ab16419a7eee4eb35b5a3fbe0d002434b339a4a7b09/matplotlib-3.0.0-cp35-cp35m-manylinux1_x86_64.whl#sha256=eaa8f8248c20eacfade26faf749e248adc1bec1edc2d08b05916297cc76a72bd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win32: https://files.pythonhosted.org/packages/cf/ee/a256f91b2d9bfc6fdb50c2f1d0ba9e9bbb46c2b2c1f8fc6c48e673c58cd3/matplotlib-3.0.0-cp35-cp35m-win32.whl#sha256=91669d38938ae7b66db084e444ee5dceed09b59a6622fda10dfb021d5ce6d0dc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win_amd64: https://files.pythonhosted.org/packages/46/29/6dcd041e3bcff987c4fa6d8ed98e46435ba1bc1eb8e237a2b5d364f450f3/matplotlib-3.0.0-cp35-cp35m-win_amd64.whl#sha256=7318d11a4784c3e37f5de0c9141d18eac08565d303da7d3d557662369f2f866b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/f0/de/49aea99b9d088ce4457b5b171c016173347eba7b79753cdacbbd7da89dee/matplotlib-3.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=70aba3a1c7dbef5a997db8afe06e256c6b67e1dc15bb16d8b55d140ea5375a8d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ed/89/dd823436a5f8d5ca9304b51b554863bfd366ca84708d5812f5ee87c923bc/matplotlib-3.0.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=ede6d9676c43844e4994b041ffca08dd157ce171190a8ccb40fed9b377db5653 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/65/78/a4f564cd84432c67e4770b3fca77e944fb3680b774b7df289e05e219e4cc/matplotlib-3.0.0-cp36-cp36m-win32.whl#sha256=290864f3c69d1e71d6648c9c75093db28486f1bf058b0ab2fda9d2d6814ddf19 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/14/bf/92933840e7416092cecca817c1b4e90260eae78b3817194831b9d69c83b8/matplotlib-3.0.0-cp36-cp36m-win_amd64.whl#sha256=0f87d188528ff3c86286603bc13170a5932e631c0c69d9995aae86448a7d9692 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/83/56/0e2504caa02d637d6279b4cd7ff2624f51992f49915a6e6c50747433544e/matplotlib-3.0.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=e3acc990b3672132a670b23cc055b967d0aa04183dbc5be82a38a0426ee6d1a6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/1e/92/923b86132669ce39b7b0096a402cc78a5b70f22423f8b59bbd7bb7ff9403/matplotlib-3.0.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=a547edc4d0ce68f3eb397ed8701314f254a0de593045ee0eecad4f1efc664951 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/d3/f9/1d64728ec21c821f83ca97ad21e819de8705a436e8a0f9d1ada98d13c79d/matplotlib-3.0.0-cp37-cp37m-win32.whl#sha256=0f738b57051e8a0f8bc8282031d0a82e9dedbd10a94fd54d4c3830d708607a8b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/7e/ce/a4b83c538b48841d4d060569cc0e6afeab5caa95993613f15294ce1b1380/matplotlib-3.0.0-cp37-cp37m-win_amd64.whl#sha256=c99b3908e76de5d1582e6941dc34de086eb38d18539520f4ae4ffa29b8f2644f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Found link https://files.pythonhosted.org/packages/ec/06/def4fb2620cbe671ba0cb6462cbd8653fbffa4acd87d6d572659e7c71c13/matplotlib-3.0.0.tar.gz#sha256=b4e2333c98a7c2c1ff6eb930cd2b57d4b818de5437c5048802096b32f66e65f9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5), version: 3.0.0
  Skipping link: none of the wheel's tags match: cp35-cp35m-macosx_10_10_intel, cp35-cp35m-macosx_10_10_x86_64, cp35-cp35m-macosx_10_6_intel, cp35-cp35m-macosx_10_9_intel, cp35-cp35m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/74/73/8c80060730af76c0fb9060b47f1fa0dd56dd9d26cb9192029d889dc19dc5/matplotlib-3.0.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=e9d37b22467e0e4d6f989892a998db5f59ddbf3ab811b515585dfdde9aacc5f9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-manylinux1_x86_64: https://files.pythonhosted.org/packages/b2/58/5842588fa67b45ffb451c4c98eda283c0c42b8f2c5e503e4f6d9ff3c3a63/matplotlib-3.0.1-cp35-cp35m-manylinux1_x86_64.whl#sha256=d419a5fb5654f620756ad9883bc3f1db6875f6f2760c367bee775357d1bbb38c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win32: https://files.pythonhosted.org/packages/01/05/a5a62b563f011e9309688ad33ad9ce9f51de4a61735c62c847d79e8345fb/matplotlib-3.0.1-cp35-cp35m-win32.whl#sha256=e4ad891787ad2f181e7582997520a19912990b5d0644b1fdaae365b6699b953f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win_amd64: https://files.pythonhosted.org/packages/0b/a3/20b7f7fc581de8fb98da8f2fba404955ade4aeefb8d6c64b4f20ca2495f8/matplotlib-3.0.1-cp35-cp35m-win_amd64.whl#sha256=66a6b7264fb200dd217ebc95c53d59b5e5fa8cac6b8a650a50ed05438667ff32 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4d/e0/53c8b0fe6789ee6dd0a2ad22d830f463d3f77f003748caf3bde8cc542460/matplotlib-3.0.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=ee4471dd1c5ed03f2f46149af351b7a2e6618eced329660f1b4b8bf573422b70 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/1e/f8/4aba1144dad8c67db060049d1a8bc740ad9fa35288d21b82bb85de69ff15/matplotlib-3.0.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=716caa55ebfb82d66f7a5584ad818b349998d9cf7e6282e5eda5fdddf4752742 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/74/92/fb802142934da3f81fbb15917f88f779c59b74bb8718df8dc6e9adf1df44/matplotlib-3.0.1-cp36-cp36m-win32.whl#sha256=de25d893f54e1d50555e4a4babf66d337917499c33c78a24216838b3d2c6bf3b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/f1/f2/0e89288925f87716499f1984c3d7076f4eef2c93db7e30df4844b6e30978/matplotlib-3.0.1-cp36-cp36m-win_amd64.whl#sha256=d1bd008db1e389d14523345719c30fd0fb3c724b71ae098360c3c8e85b7c560f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a3/33/13e75cfd3eabfe3bc424967fed38b8c925e7ca4678238705abea295c7133/matplotlib-3.0.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=e69ab0def9b053f4ea5800306ff9c671776a2d151ec6b206465309bb468c0bcc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ab/e9/675be8ef5ca1be676c5a5b2dbb3eb5246c7017eaa7b233638562a61ea968/matplotlib-3.0.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=69ff0d7139f3886be552ff29478c886b461081c0afb3a3ad46afb1a445bae722 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/01/57/ea829da613b3eb1d1b18d85ba3be8d41b2bdd61997960c30824a1059a663/matplotlib-3.0.1-cp37-cp37m-win32.whl#sha256=91bf4be2477aa7408131ae1a499b1c8904ea8eb1eb3f88412b4809ebe0698868 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/a9/1d/3a0c6fea60ea19a0ccf8d585b6eec5747ed83a4263b56a6f4b17636e79fb/matplotlib-3.0.1-cp37-cp37m-win_amd64.whl#sha256=dc5b097546eeadc3a91eee35a1dbbf876e78ebed83b934c391f0f14605234c76 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Found link https://files.pythonhosted.org/packages/62/81/e394906a8a15c46b56110c558c222d4d9b3735f0595e254918eca47f98cf/matplotlib-3.0.1.tar.gz#sha256=70f8782c50ac2c7617aad0fa5ba59fc49f690a851d6afc0178813c49767644dd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5), version: 3.0.1
  Skipping link: none of the wheel's tags match: cp35-cp35m-macosx_10_10_intel, cp35-cp35m-macosx_10_10_x86_64, cp35-cp35m-macosx_10_6_intel, cp35-cp35m-macosx_10_9_intel, cp35-cp35m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/fa/58/a25b05f57775ea5f264362c69657e1170a97f2bad0311bbebc2d168237f4/matplotlib-3.0.2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=4269ce3d1b897d46fc3cc2273a0cc2a730345bb47e4456af662e6fca85c89dd7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ad/4c/0415f15f96864c3a2242b1c74041a806c100c1b21741206c5d87684437c6/matplotlib-3.0.2-cp35-cp35m-manylinux1_x86_64.whl#sha256=1975b71a33ac986bb39b6d5cfbc15c7b1f218f1134efb4eb3881839d6ae69984 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win32: https://files.pythonhosted.org/packages/c6/a6/75a4ccad919388fc3ef578d8e5ccadd12dbf6257cb79f12b11508f074b49/matplotlib-3.0.2-cp35-cp35m-win32.whl#sha256=8e1223d868be89423ec95ada5f37aa408ee64fe76ccb8e4d5f533699ba4c0e4a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win_amd64: https://files.pythonhosted.org/packages/3b/29/b2b657b4cbb306c6cfe82227c6f61d9939b0f3930c61e38766f3e98a91a2/matplotlib-3.0.2-cp35-cp35m-win_amd64.whl#sha256=65214fd668975077cdf8d408ccf2b2d6bdf73b4e6895a79f8e99ce4f0b43fcdb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/28/6c/addb3560777f454b1d56f0020f89e901eaf68a62593d4795e38ddf24bbd6/matplotlib-3.0.2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=c27fd46cab905097ba4bc28d5ba5289930f313fb1970c9d41092c9975b80e9b4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/71/07/16d781df15be30df4acfd536c479268f1208b2dfbc91e9ca5d92c9caf673/matplotlib-3.0.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=74bc213ab8a92d86a0b304d9359d1e1d14168d4c6121b83862c9d8a88b89a738 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/9e/7a/5ebc092d996f613905e43fabdc6899beef9f99291efc4136884c5b96b8a4/matplotlib-3.0.2-cp36-cp36m-win32.whl#sha256=88949be0db54755995dfb0210d0099a8712a3c696c860441971354c3debfc4af (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/b1/56/569c83515c10146fd0aa09e086816b12e301d0811048e3354a6e9b77ba9a/matplotlib-3.0.2-cp36-cp36m-win_amd64.whl#sha256=2b222744bd54781e6cc0b717fa35a54e5f176ba2ced337f27c5b435b334ef854 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/50/08/2cdc493a19805d40f77db9674ae8100b37feafeef12686cb30dab19c8192/matplotlib-3.0.2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=f4c12a01eb2dc16693887a874ba948b18c92f425c4d329639ece6d3bb8e631bb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/e7/f9/5377596cb1c035c102396f5934237a046f80da69974026f90bee5db8b7ba/matplotlib-3.0.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=9fa00f2d7a552a95fa6016e498fdeb6d74df537853dda79a9055c53dfc8b6e1a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/3f/16/4500e22ea8d11f4946bd902695d0113f82a0aaca45f352478f157ca6623d/matplotlib-3.0.2-cp37-cp37m-win32.whl#sha256=16aa61846efddf91df623bbb4598e63be1068a6b6a2e6361cc802b41c7a286eb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/5c/ee/efaf04efc763709f6840cd8d08865d194f7453f43e98d042c92755cdddec/matplotlib-3.0.2-cp37-cp37m-win_amd64.whl#sha256=317643c0e88fad55414347216362b2e229c130edd5655fea5f8159a803098468 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Found link https://files.pythonhosted.org/packages/89/0c/653aec68e9cfb775c4fbae8f71011206e5e7fe4d60fcf01ea1a9d3bc957f/matplotlib-3.0.2.tar.gz#sha256=c94b792af431f6adb6859eb218137acd9a35f4f7442cea57e4a59c54751c36af (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5), version: 3.0.2
  Skipping link: none of the wheel's tags match: cp35-cp35m-macosx_10_10_intel, cp35-cp35m-macosx_10_10_x86_64, cp35-cp35m-macosx_10_6_intel, cp35-cp35m-macosx_10_9_intel, cp35-cp35m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a4/6c/60a2e611c273741b515a8127ce2c4ad8195ee19685db9724d1367b008a10/matplotlib-3.0.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=e918d51b1fda82a65fdf52d2f3914b2246481cc2a9cd10e223e6be6078916ff3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-manylinux1_x86_64: https://files.pythonhosted.org/packages/89/61/465fb3bfba684b0f53b5c4829c3c89e86e6fe9fdcdfda93e38f1788090f0/matplotlib-3.0.3-cp35-cp35m-manylinux1_x86_64.whl#sha256=63e498067d32d627111cd1162cae1621f1221f9d4c6a9745dd7233f29de581b6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win32: https://files.pythonhosted.org/packages/ac/38/1dac102a8febac496b977fac01d659cc546d03908b503bcd0417115e338d/matplotlib-3.0.3-cp35-cp35m-win32.whl#sha256=91c54d6bb9eeaaff965656c5ea6cbdcbf780bad8462ac99b30b451548194746f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp35-cp35m-win_amd64: https://files.pythonhosted.org/packages/c9/1e/0cf26e92de5438d0f2118435476665aae843002f4701da296b0b3252a237/matplotlib-3.0.3-cp35-cp35m-win_amd64.whl#sha256=cf8ae10559a78aee0409ede1e9d4fda03895433eeafe609dd9ed67e45f552db0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/82/7e/184d995d711e3401722769cd6982b46d42aee14a82ba54a3a79425f939c9/matplotlib-3.0.3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=de5ccd3500247f85fe4f9fad90f80a8bd397e4f110a4c33fabf95f07403e8372 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/e9/69/f5e05f578585ed9935247be3788b374f90701296a70c8871bcd6d21edb00/matplotlib-3.0.3-cp36-cp36m-manylinux1_x86_64.whl#sha256=e8d1939262aa6b36d0c51f50a50a43a04b9618d20db31e6c0192b1463067aeef (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/ba/a5/02d025dff70210a10c1420eeadd730a6d94b239421316866bd6d7148a836/matplotlib-3.0.3-cp36-cp36m-win32.whl#sha256=d51d0889d1c4d51c51a9822265c0494ea3e70a52bdd88358e0863daca46fa23a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/21/4c/35fa1837a705f33621604a1967b1505bd3f695940fdf02fad77ef11de196/matplotlib-3.0.3-cp36-cp36m-win_amd64.whl#sha256=1ae6549976b6ceb6ee426272a28c0fc9715b3e3669694d560c8f661c5b39e2c5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/2e/81/bb51214944e79f9c9261badd7ef99b573fb0bc9110c0075c6a9e76224d0d/matplotlib-3.0.3-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=aeef177647bb3fccfe09065481989d7dfc5ac59e9367d6a00a3481062cf651e4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/83/2a/e47bbd9396af32376863a426baed62d9bf3091f81defd1fe81c5f33b11a3/matplotlib-3.0.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=4d4250bf508dd07cca3b43888097f873cadb66eec6ac63dbbfb798798ec07af2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/76/6f/5d6b88dda698a175ef6f680ff0764cc5628f5afdd2dd6a0e2c8061cd0655/matplotlib-3.0.3-cp37-cp37m-win32.whl#sha256=53af2e01d7f1700ed2b64a9091bc865360c9c4032f625451c4589a826854c787 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/13/ca/8ae32601c1ebe482b140981eedadf8a927de719ca4cecc550b12a4b78f2d/matplotlib-3.0.3-cp37-cp37m-win_amd64.whl#sha256=7169a34971e398dd58e87e173f97366fd88a3fa80852704530433eb224a8ca57 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5)
  Found link https://files.pythonhosted.org/packages/26/04/8b381d5b166508cc258632b225adbafec49bbe69aa9a4fa1f1b461428313/matplotlib-3.0.3.tar.gz#sha256=e1d33589e32f482d0a7d1957bf473d43341115d40d33f578dad44432e47df7b7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.5), version: 3.0.3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/86/ea/9e6e1f5b76778aae979b0086aac2abe8c92f8ccf181d7a05ea782460e161/matplotlib-3.1.0rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=375b694ad0426314132ed6d324d1a5c05d121f906b08b43d314c2d5a7cd75332 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a1/e4/2d0421f90761f56dc5a129795246a4c44c97d4b7f6f71fa94d1dad1f8507/matplotlib-3.1.0rc1-cp36-cp36m-manylinux1_x86_64.whl#sha256=570beedeec485a8ec2ce7940c213be005265c8697a347e299d2ccc8c3c2e1fe0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/52/94/e19b3a737651bd125eb414a6e3f4b3521a720f614ae85e6c94a2de65c6c9/matplotlib-3.1.0rc1-cp36-cp36m-win32.whl#sha256=ca69dd0ebbb31f2148fce5fbf8ba1d3e73c384d53d74b92445c3093ec4f1f7de (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/e7/87/8d038b704911f5fbc8642d14d968da3071122e8f15d8f170cc0a4db9938b/matplotlib-3.1.0rc1-cp36-cp36m-win_amd64.whl#sha256=4ff5ea3530cd5f847128a0cdf58f5a4880491ac412a8160870d647e7fb849edd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/82/fa/9d7b00e82983be6a93ac5cdca47c72724409f5c2d837bb8497be25a35294/matplotlib-3.1.0rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=93c54e96e88da1700127fea79fcef2b3e340e3342758655b93db8c9b93d4d1e6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/15/f7/fd233f3380f205799a6d3e1196591d9dde8593557a5a7a86630462dfa506/matplotlib-3.1.0rc1-cp37-cp37m-manylinux1_x86_64.whl#sha256=b9a7cea9ab675c56140339ff34fd5f71c1d1afef7e8522b5f14905b1555febbe (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/5a/fa/9ed082b9ec5b228ba332ec060d816b2d4ef4265cc27a1e558906ae4a30fe/matplotlib-3.1.0rc1-cp37-cp37m-win32.whl#sha256=056fc93273d427fed5600bf6125adcdd600e242c4edf72723dd766fe26b333b1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/36/ad/45bf183fa32fc1b65b5a84efe08770d35a7f7c4133a429ef14906f1d6a29/matplotlib-3.1.0rc1-cp37-cp37m-win_amd64.whl#sha256=7f11ae7cb767d856b792fdf02c8e5c339a1327b7ada19c5b36b64f5a72562f7a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/15/05/f97b736e8bb1dda44ce2ed5a6f308fa3b1dc5e47f2925f9c0ac3d3a78db2/matplotlib-3.1.0rc1.tar.gz#sha256=ad6f0a8e0e31e1e5342029fa0bc44aa3c54a21eac9979559dea7da7f1799299d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.0rc1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3e/4b/02c821d589c360efe38175bcdc683f8ac874973fe0e2df2d6c5930950f66/matplotlib-3.1.0rc2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=62f1c4acda47690478b949a8d2d45eb707246331cf19d64c5f461796f52bb36d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a2/ac/b021b6b7f888b10954c36c9196cd2c8c0f6860b514dda6d94135864b8693/matplotlib-3.1.0rc2-cp36-cp36m-manylinux1_x86_64.whl#sha256=4d88eaf52d077507caf08299f1d97eb8b967687a48d612a513ba862f6e6f713d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/39/8c/7d1a0165b49767b66fea86266fe0e79be24b3ebdd3a20b7b8e66434b788a/matplotlib-3.1.0rc2-cp36-cp36m-win32.whl#sha256=881d857e7c358ad81ca27ca16f6d7c72da8b0d4bd129d6e7267354761a479176 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/8d/98/684f28bce16efb964dcbcf85dc1215687ad742133ee190f0402faecb5321/matplotlib-3.1.0rc2-cp36-cp36m-win_amd64.whl#sha256=00b3b4febc91b43f82dd732bfff2edc397386dfd093ea7be1eb0f8f964295914 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/6a/04/24998453f3e851e5609be0f85d1c194d32170a67098ef9d5745dbce64244/matplotlib-3.1.0rc2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=a48f3a2fb8f43d933085e48971204a6701ab72afa3574981072874727628d2c9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ba/20/4df84770f05c7fe83acbfe2ad8289491282a82cdd7f0f2d86d6fb898c915/matplotlib-3.1.0rc2-cp37-cp37m-manylinux1_x86_64.whl#sha256=89574094a1deecbd7e9454196b28745feae703bb480aa3359cc9f2a4db0a03c8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/97/88/3854670b52ce4c7a9781e161b75a2faac93673fe594d6f731e56b43e0a8b/matplotlib-3.1.0rc2-cp37-cp37m-win32.whl#sha256=18840067e75af824009538af4b46a835c38befb4680c31f927661d3009a8f38f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/f2/e4/1ec14c1a1f53448110fd749b06be81496757f908877c4677e44ca0c1bac1/matplotlib-3.1.0rc2-cp37-cp37m-win_amd64.whl#sha256=3fabcbbba7330d9bbd57167c79e1df862d97e3795c3ea98b69686f7dfd301bed (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/6f/d1/769b5eadedb93f129fb1e7697a8a3ed12260cb388ed59a7d4d6ac2fe7f59/matplotlib-3.1.0rc2.tar.gz#sha256=92f10282f38b2b7d2d685da317ac9b1c2bf224e68815fc83a0d2145babc0c6fc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.0rc2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/45/bf/8d8233749b5f8580bdfdb2aeed0d2df177daab44cfebc5c0de827ce1b11e/matplotlib-3.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=409a5894efb810d630d2512449c7a4394de9a4d15fc6394e26a409b17d9cc18c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/da/83/d989ee20c78117c737ab40e0318ea221f1aed4e3f5a40b4f93541b369b93/matplotlib-3.1.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=5c5ef5cf1bc8f483123102e2615644937af7d4c01d100acc72bf74a044a78717 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/07/a3/8e964cdacd836124a3e2696a14a5ae72c6000d01740233c53af60beeaa9b/matplotlib-3.1.0-cp36-cp36m-win32.whl#sha256=399bf6352633aeeb45ca55c6c943fa2738022fb17ae498c32a142ced0b41528d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/44/0c/9ec1c91ef546457de35c95f285f581e0433ce76b1bc80fbb297fc12485ed/matplotlib-3.1.0-cp36-cp36m-win_amd64.whl#sha256=f3d8b6bccc577e4e5ecbd58fdd63cacb8e58f0ed1e97616a7f7a7baaf4b8d036 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/ea/de/8c82ad7acc647357bc76d6a90385cba7df8e57d99e25ca38e5e12178682f/matplotlib-3.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=08d9bc2e2acef42965256acd5015dc2c899cbd53e01bf4214c5510c7ea0efd2d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/dc/cb/a34046e75c9a4ecaf426ae0d0eada97078c8ce4bbe3250940b1a312a1385/matplotlib-3.1.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=d0052be5cdfa27018bb08194b8812c47cb985d60eb682e1809c76e9600839516 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/76/e2/f87bf36a2a460857ec9c28535e00102eb6908a727e427adc6427c5dc5453/matplotlib-3.1.0-cp37-cp37m-win32.whl#sha256=e7d6620d145ca9f6c3e88248e5734b6fda430e75e70755b887e48f8e9bc1de2a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/3b/52/17dbb82ca36937dd4d0027fe1945c3c78bdb465b4736903d0904b7f595ad/matplotlib-3.1.0-cp37-cp37m-win_amd64.whl#sha256=1f31053f660df5f0310118d7f5bd1e8025170e9773f0bebe8fec486d0926adf6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/51/fe/84ab101f8ab543d89b6a128326f62adcdafd2781ab8362a737e6ce78eea7/matplotlib-3.1.0.tar.gz#sha256=1e0213f87cc0076f7b0c4c251d7e23601e2419cd98691df79edb95517ba06f0c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.0
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/cf/a4/d5387a74204542a60ad1baa84cd2d3353c330e59be8cf2d47c0b11d3cde8/matplotlib-3.1.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=796edbd1182cbffa7e1e7a97f1e141f875a8501ba8dd834269ae3cd45a8c976f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/57/4f/dd381ecf6c6ab9bcdaa8ea912e866dedc6e696756156d8ecc087e20817e2/matplotlib-3.1.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=bab9d848dbf1517bc58d1f486772e99919b19efef5dd8596d4b26f9f5ee08b6b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/39/ae/60ec3ec8f8a18c5eef71c6dff7ed0dfa0cd2f2d57b6691e595e2bc43325f/matplotlib-3.1.1-cp36-cp36m-win32.whl#sha256=934e6243df7165aad097572abf5b6003c77c9b6c480c3c4de6f2ef1b5fdd4ec0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/cc/eb/fd7a5f3c1484e8d2590ff94ca0b89941940a916394f719ab3bb7279e1970/matplotlib-3.1.1-cp36-cp36m-win_amd64.whl#sha256=c1fe1e6cdaa53f11f088b7470c2056c0df7d80ee4858dadf6cbe433fcba4323b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/c3/8b/af9e0984f5c0df06d3fab0bf396eb09cbf05f8452de4e9502b182f59c33b/matplotlib-3.1.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=ec6bd0a6a58df3628ff269978f4a4b924a0d371ad8ce1f8e2b635b99e482877a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/19/7a/60bd79c5d79559150f8bba866dd7d434f0a170312e4d15e8aefa5faba294/matplotlib-3.1.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=31a30d03f39528c79f3a592857be62a08595dec4ac034978ecd0f814fa0eec2d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/71/13/0720e50bd8988299137fd7e936e4d494b45a473c5fe70d72cd6c1bd79163/matplotlib-3.1.1-cp37-cp37m-win32.whl#sha256=e5b8aeca9276a3a988caebe9f08366ed519fff98f77c6df5b64d7603d0e42e36 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/1a/c0/69e3f695d7384012e90be1e16570c08953baae00fd98094179ef87c7d5a2/matplotlib-3.1.1-cp37-cp37m-win_amd64.whl#sha256=4442ce720907f67a79d45de9ada47be81ce17e6c2f448b3c64765af93f6829c9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/12/d1/7b12cd79c791348cb0c78ce6e7d16bd72992f13c9f1e8e43d2725a6d8adf/matplotlib-3.1.1.tar.gz#sha256=1febd22afe1489b13c6749ea059d392c03261b2950d1d45c17e3aed812080c93 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/23/38/cb55064c883dfa6f49ccbf635ca725e862736c86de99984bd556ac144002/matplotlib-3.1.2-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=98c2ffeab8b79a4e3a0af5dd9939f92980eb6e3fec10f7f313df5f35a84dacab (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/4e/11/06958a2b895a3853206dea1fb2a5b11bf044f626f90745987612af9c8f2c/matplotlib-3.1.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=2d6ab54015a7c0d727c33e36f85f5c5e4172059efdd067f7527f6e5d16ad01aa (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/71/a1/a13f967eb1a25b145425e83c0614bf566c7125e5bb08f06420a938eaa88c/matplotlib-3.1.2-cp36-cp36m-win32.whl#sha256=819d4860315468b482f38f1afe45a5437f60f03eaede495d5ff89f2eeac89500 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/44/fb/132de6a4b803d8ce909a89043b7d3f775f64e0a39398fc98c02e3e144b61/matplotlib-3.1.2-cp36-cp36m-win_amd64.whl#sha256=08ccc8922eb4792b91c652d3e6d46b1c99073f1284d1b6705155643e8046463a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a0/76/68bc3374ffa2d8d3dfd440fe94158fa8aa2628670fa38bdaf186c9af0d94/matplotlib-3.1.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=1f9e885bfa1b148d16f82a6672d043ecf11197f6c71ae222d0546db706e52eb2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/61/42/3e92d7aa64295483fbca20a86c89b34d0cb43cffaadaffe028793902d790/matplotlib-3.1.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=8cc0e44905c2c8fda5637cad6f311eb9517017515a034247ab93d0cf99f8bb7a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/aa/6b/f3824e5a23ad15a127113f29ceb8d82fbe07ea4517d9790a3d6348a3af33/matplotlib-3.1.2-cp37-cp37m-win32.whl#sha256=161dcd807c0c3232f4dcd4a12a382d52004a498174cbfafd40646106c5bcdcc8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/dd/73/dc25ca27a9960539ef984921b0d42368445b856ae0861c3acba542b9a39c/matplotlib-3.1.2-cp37-cp37m-win_amd64.whl#sha256=ee59b7bb9eb75932fe3787e54e61c99b628155b0cedc907864f24723ba55b309 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/52/dd/ffb5cad3cf2f41bc3966489709e4e020a34f8d183fe85c91dc8a3db8bcf5/matplotlib-3.1.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=5d2e408a2813abf664bd79431107543ecb449136912eb55bb312317edecf597e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/53/6c/7b400d45f0ecd6703b2779a7dfda6578579a353748e1b43d8353cb7f5b7f/matplotlib-3.1.2-cp38-cp38-manylinux1_x86_64.whl#sha256=d59bb0e82002ac49f4152963f8a1079e66794a4f454457fd2f0dcc7bf0797d30 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/e3/05/1a39045fbdc6a4f0498572c1ce95ccc37b9b8204271c0c4604af45bd926e/matplotlib-3.1.2-cp38-cp38-win32.whl#sha256=61c8b740a008218eb604de518eb411c4953db0cb725dd0b32adf8a81771cab9e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/d0/7e/632e6ab64b93148b79da35e53d572c50c4a28d3964362e41228e8dd3bf93/matplotlib-3.1.2-cp38-cp38-win_amd64.whl#sha256=80f10af8378fccc136da40ea6aa4a920767476cdfb3241acb93ef4f0465dbf57 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/75/81/53ccadcb8cad0a9837f1487b57f2b46b21caa2b3f35f72bc1acb06b5825c/matplotlib-3.1.2.tar.gz#sha256=8e8e2c2fe3d873108735c6ee9884e6f36f467df4a143136209cff303b183bada (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/04/8e/141e02c8bafa10324a7b08ae1d6b9dad8273ac385483ccae5b6432858785/matplotlib-3.1.3-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=6a0031774c6c68298183438edf2e738856d63a4c4797876fa81d0ee337f5361c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/7e/07/4b361d6d0f4e08942575f83a11d33f36897e1aae4279046606dd1808778a/matplotlib-3.1.3-cp36-cp36m-manylinux1_x86_64.whl#sha256=b4c0010eff09ab65c77ad1a0eec6c7cccb9f6838c3c77dc5b4002fe0cf2912fd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/24/6a/1174df8b0d1f5c213bc2758450ab1d6bddb4ead4aa64f0c026bb10740aec/matplotlib-3.1.3-cp36-cp36m-win32.whl#sha256=78d0772412c0653aa3e860c52ff08d1f5ba64334e2b86b09dc2d502657d8ca73 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/1a/a1/52899c06352f0bb87f78ffb7efa7b69f533d8d4f1f5035dc1fc911cc2a33/matplotlib-3.1.3-cp36-cp36m-win_amd64.whl#sha256=97f04d29a358826f205320fbc88d46ce5c5ff6fb54ae050042ff396beda52ca4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/f5/1e/5cfcafca1ebe7b5fc08dcc2fe5efc7307e6970de0dd2999a7757311a7aec/matplotlib-3.1.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=4164265ca573481ce61c83322e6b33628203afeabeb3e22c50376f5d3ee0f9be (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/4c/9b/35ab3469fd1509f7636a344940569ebfd33239673fd2318e80b4700a257c/matplotlib-3.1.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=b5ace0531255932ad19fe64c116ada2713f7b38381db8f68df0fa694409e67d1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/c0/3e/dd982807176bd75678a3454b6bdcf1c4593052a9c9304caad2e94b0133dc/matplotlib-3.1.3-cp37-cp37m-win32.whl#sha256=c7bb7ed3e011324b56462391ec3f4bbb7c8c6af5892ebfb45d312b15b4cdfc8d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/93/22/a3cef48d25ad94f540bb3dd91490fb22afe0911acc3390b1929527ad4e4f/matplotlib-3.1.3-cp37-cp37m-win_amd64.whl#sha256=f0023322c99328c40ce22678ab0ab5adfc27e338419966539398239996f63e8d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4f/05/c507dff9abe01e4d2a0c18daa5eb765e16f8bc31ed75582c15447ee9aa87/matplotlib-3.1.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=db8bbba9284845034a2f0e1add91dc5e89db8c996359bdcf677a8d6f88875cf1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/c8/d5/d6f6419b47998a64571c8814a544e5cb81badd96dd0b9e2e81a6c02d7b8f/matplotlib-3.1.3-cp38-cp38-manylinux1_x86_64.whl#sha256=635ded7834f43c8d999076236f7e90074d77f7b8345e5e82cd95af053cc29df1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/86/e4/1ef1cb7f2c52345a7e3c8efd3de7ec943818c0011c839b4880c0ba0bb7b1/matplotlib-3.1.3-cp38-cp38-win32.whl#sha256=8efff896c49676700dc6adace6137a854ff64a4d44ca057ff726960ffdaa47bf (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/83/b0/3698088013dce1b7f7d557582a9f247ff70c5ebf205faaa421b2c555253b/matplotlib-3.1.3-cp38-cp38-win_amd64.whl#sha256=470eed601ff5132364e0121a20d7c3d43fab969c8c333422c1b6b72fde2ed3c1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp373-pypy36_pp73-win32: https://files.pythonhosted.org/packages/99/04/e09a7d46664e21546bdcd83c8cd97bce47ca789654355ea895d3a66381f8/matplotlib-3.1.3-pp373-pypy36_pp73-win32.whl#sha256=23b71560c721109954c0215ffc81f4c80ce8528749d534a01a61e8ab737c5bce (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/be/74/24d058c17b155d131359f1cd01e120b3954686bf8b7853172b279237e1dc/matplotlib-3.1.3.tar.gz#sha256=db3121f12fb9b99f105d1413aebaeb3d943f269f3d262b45586d12765866f0c6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.1.3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_10_intel, cp36-cp36m-macosx_10_10_x86_64, cp36-cp36m-macosx_10_6_intel, cp36-cp36m-macosx_10_9_intel, cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/38/ef/7a9adc5486d1f9dff2cba029fdaab16e680c0856d35f1a55f3a3c1e0f995/matplotlib-3.2.0rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=d255e0c97f8dc55bc7a89460498187cefbcf8bc27453c9869dc7f208a21a5eae (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_6_intel: https://files.pythonhosted.org/packages/8b/54/ee2e6e44b8752781ed2a7b713a18dc0237e60bf29cea28c0abec85d1517b/matplotlib-3.2.0rc1-cp36-cp36m-macosx_10_6_intel.whl#sha256=a5cc09726e3c11d01a1c3f5ae9c83cb7015f554932aa80330c87199dcc537914 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/09/8e/5bef61e2c3fddc2fe418c74e7db78b5e7d683d394239117cce19ec117e51/matplotlib-3.2.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=053deb11bc8599fd2898d18c6524fb914a13ab9f244782b13f217187d404f6c6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/68/8a/1996ec27eb368ff66e75e4c8d8af0cd843ab1ba3c1b64c3c4949e0a518b1/matplotlib-3.2.0rc1-cp36-cp36m-manylinux1_x86_64.whl#sha256=fe05e4d91d91320889cb1f24a83dc4368edf54300ce7cb007491539ea569d7a8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/e9/77/ce350ca2cdfd66b466f4a0596b73363bf07478572db606b9bcddb6fbfff9/matplotlib-3.2.0rc1-cp36-cp36m-win32.whl#sha256=e0f2f6083b85c44625097254cbf48e4f8892d8d860f05650ab66c92ce81c92de (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/86/7d/d9a7ab2b7af4da7ba4e3d345b0b1fbca3d42b7a7eb3039d7ec3d0f39b7c1/matplotlib-3.2.0rc1-cp36-cp36m-win_amd64.whl#sha256=c517261b5049f07a807fc1c867870187837098e09563502c7c31e8e27354d5e6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_10_intel, cp37-cp37m-macosx_10_10_x86_64, cp37-cp37m-macosx_10_6_intel, cp37-cp37m-macosx_10_9_intel, cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/67/40/4744ab100a1b203bc243658eee26ed1898745128155144001c79d8b3d9ec/matplotlib-3.2.0rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#sha256=f92d415030e3a68379593ffcd89fa937aae2fd0982abd875aa204eac713306b8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_6_intel: https://files.pythonhosted.org/packages/97/10/759f04616b1b5b45084af3259848d35efbbd20e6aa1eb82844525c89ad6e/matplotlib-3.2.0rc1-cp37-cp37m-macosx_10_6_intel.whl#sha256=e6a06e864a8be8e758f63a0e118e097f6ee1b5c5314a249d1966e23c4ceef493 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/1a/31/72a9f333500078c1a30f1d0dfdb078913bc50a2d9b15e0c443e65b19631e/matplotlib-3.2.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=ec272433673bafc56bda0039b2587535297c1830d75158465f3ace58b99de25a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ff/47/d2221ae8a7a07fa3e0a7d471332794893ff1b4407ab305e5093342b68ad0/matplotlib-3.2.0rc1-cp37-cp37m-manylinux1_x86_64.whl#sha256=b2ed24717d708712ca1ad1ef86132e51f6f6d6f2ef684ec47babb37d07cd6bd3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/f8/1f/8cf307462ef8aed3c1f287a3d7acce88cad9ec2890573ad890965796d471/matplotlib-3.2.0rc1-cp37-cp37m-win32.whl#sha256=188b13dc1324f399bd401207e90775ac0f9c08ee517ab5aca7126723fd900b8c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/bc/83/146ff950c41e82b527bc8641e7a760b5b3399e8934b01bf1b762b7baafc8/matplotlib-3.2.0rc1-cp37-cp37m-win_amd64.whl#sha256=e8dcb5641ec68e3c4f6b3c390296fb01a4d6e78365e76de4fc563ddfeb973589 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4e/8c/5239be38d7f1643bca2e49537e76bed20e6179ae10a1c5193cd8a851abc5/matplotlib-3.2.0rc1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=ab3239b3cb72342d7e02bc22032925aa9357c66649de4fecd19c43299333a3ed (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/53/8e/233e00b82f1d450a42aa3187296b1a085cefea679786a6b714c9d9026f78/matplotlib-3.2.0rc1-cp38-cp38-manylinux1_x86_64.whl#sha256=bd46580790646b0b5c067590ca68e0a272a5532169af029c66a1adf7138b6774 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/ed/a2/fe9c7cfb69db6a390bffa04ad2bc4632cd4f54acf1433092c88082cc7bde/matplotlib-3.2.0rc1-cp38-cp38-win32.whl#sha256=46ea8b5622423b20734ff1c7eacc3771149d35fe7c374a8af1e916b1022ccd02 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/c8/21/f3d48b56e4ff64d270fa3e9f3f1c02c607e2d3f2842085364d4abfce4121/matplotlib-3.2.0rc1-cp38-cp38-win_amd64.whl#sha256=af6356f17b413cbf4a8be36badb426f644b018cccbecf1cb08965a4bede0e112 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp372-pp372-win32: https://files.pythonhosted.org/packages/e8/87/e4af89bd693c51d2de201657c80a10038997fb825cf145fe558d03dc6623/matplotlib-3.2.0rc1-pp372-pp372-win32.whl#sha256=3bbbf1c2732c772c7afa63e2a451356bf9f577de7fce996aff805cd664531fed (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/07/32/78676432117f2e0a40daa5f676233aa4914da5cc36126826a49f3c77b02b/matplotlib-3.2.0rc1.tar.gz#sha256=077b17f4bd73d322ee7322f6f029f5805e8a8db3ad972cb4a875ac40300ee842 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.2.0rc1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/ef/55/0fa80f8d7e9666e83d1d953954d06e2b862960429956f90a691b6e97522b/matplotlib-3.2.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=b54cf89cb6400f1a8753a7b6479b6bf75fdfedff5fdb4ccc4458fadf245ae5ff (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/4b/7d/9e504c98b067028684b686c890ccc021d0db9bcbab38c9436281e99fc526/matplotlib-3.2.0rc3-cp36-cp36m-manylinux1_x86_64.whl#sha256=14d8b073d5a23094b84e0fda7a4460215e98cc18917e8a71bb143fd18930660b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/db/9b/be27ccdac27795011bf7767fbe2bc90d33ce187c811e0cf549e8c877844e/matplotlib-3.2.0rc3-cp36-cp36m-win32.whl#sha256=797cb1c5eed0f09bc7f16ae01b6cafc90e0768fd4809b7716e806ae693b10f89 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/a7/79/a3bb2c86f8d2768cbf808439645f5c970ce14f22e210210bbd0c27b91980/matplotlib-3.2.0rc3-cp36-cp36m-win_amd64.whl#sha256=7b59131aaa13edcbe96a0d7d2d7d3a83a39749a39e97cc701f7355c2060f9945 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/0a/62/5ff4c2a6642908e41d7275d0b7de98934af2595fcaa034a6b7f30b0badfb/matplotlib-3.2.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=23c186a5c521670f831bbd1f076ef1658e07a8cce3c7e8be1da0c828e86e08db (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a6/b3/5c0733a704f76b81a51848e2f9746ccdc018091d04590750fa22d507772e/matplotlib-3.2.0rc3-cp37-cp37m-manylinux1_x86_64.whl#sha256=2bbd55057ae22283bccca6251259dfeb6b5eaf0d7d2ce1cc963c2fb03174b50d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/c9/98/8d8a447560712e64f40230ce1193013e1023060b5e37d4ad34c3fe92c04d/matplotlib-3.2.0rc3-cp37-cp37m-win32.whl#sha256=d9be08267fc44f1eee2f13f603633726f6752780a72e0f0973c6ade5b35e98fe (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/bd/18/75933f1438c82ef3b3107f822c54b199689a2447d8941e932a81ec7d8ef8/matplotlib-3.2.0rc3-cp37-cp37m-win_amd64.whl#sha256=c40a6d3455dcd37f3726e8e289b85f9df0125afb12cc3aeb781104c6390cae58 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/87/9a/3c8401a2a1b444f3aecdbb0ed10258aa1c0310203eed061f33241a22deba/matplotlib-3.2.0rc3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=a396ea75cd64e0f730ef2a397dabcc894db702f496f2d9c3cb978daa6588220c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/3e/26/b0e68103f31dc12084c0c8dcdcba2dbf7c2646c5f104b6dc4fb2c597090e/matplotlib-3.2.0rc3-cp38-cp38-manylinux1_x86_64.whl#sha256=42904319a69afcf36d27acfe9dc605cad2f19175d1e7e1a51a1e6f1c6515ba2a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/45/15/f69f180c36699cea398a2e6506044f4f2aba93033e0d30ee8b8a83fe0906/matplotlib-3.2.0rc3-cp38-cp38-win32.whl#sha256=a7d917bbe3f6de06c42d25df32003a527424ff367726e7a55e8daad53d6189d4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/fd/b3/8ef11ca2c81a4ca42ca9880f1c35a23f61b19e5fb4f4af9e0c5a614aee9b/matplotlib-3.2.0rc3-cp38-cp38-win_amd64.whl#sha256=4a78312908e92f453ea554fb32290b51e4df799f4c31ec99f04c87dbb3553b18 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp373-pypy36_pp73-win32: https://files.pythonhosted.org/packages/b0/0e/d91dfd43bf2762bc8829223adddfaab5eb0730b84845d5387a075345bf98/matplotlib-3.2.0rc3-pp373-pypy36_pp73-win32.whl#sha256=019db591268b51dd30de5f3a8bbbf69589207e2d461de91c3aa425db6f135d3d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/f1/1b/3b5b4acc0ac1951118325d3ef22594ab468396091ef54409b884452a5622/matplotlib-3.2.0rc3.tar.gz#sha256=647a457c42ba4bd3a989384e1961a1f8766617a6519c4e53d6d3b215fad96756 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.2.0rc3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/93/1b/4233e8fee68fc9d8d47e010fa481bf124db9ea6efe7f0a72a0c96c0a751b/matplotlib-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=0711b07920919951b2c508a773c433cbe07bdad952ea84ed9d18ca7853ccbe8b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/e6/fc/5889757c4c70c552f56fddc8fbdcab565475686cdebdfa1806a9d54cd53b/matplotlib-3.2.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=b93377c6720e7db9cbba57e856a21aae2ff707677a6ee6b3b9d485f22ed82697 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/6b/93/bc68d16c1dce645f223a3c8c26e9ae7e0011926ba01dcb7f59c2165556ae/matplotlib-3.2.0-cp36-cp36m-win32.whl#sha256=8e931015769322ee6860cabb8f975f628788e851092fd5edbdb065b5a516e3af (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/bd/ab/30e83ac00e288fe315adc040270e1c0006a21cd31a7984d36f981e0178b4/matplotlib-3.2.0-cp36-cp36m-win_amd64.whl#sha256=b21479a4478070c1c0f460e1bf1b65341e6a70ae0da905fcee836651450c66bb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a8/69/2559780612c3d477218af93d7a20938d5bffeb57630279202967e321d03b/matplotlib-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=0ab307e610302971012dc2387c97fc68e58c8eb00045a2c735da1b16353a3e3f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/6c/ab/e1585a7101f8f7047376b59274ada50fefd637bd4cd99d2125a1b730845a/matplotlib-3.2.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=d75f5e952562f5e494ae92c1f917fc96c2ce09305a7c1bdc2e6502d3c61fbdc3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/65/b2/ebd81211f3c9b410f5e5a5160d91f45667a27d2e92b4d103168e3d7dc714/matplotlib-3.2.0-cp37-cp37m-win32.whl#sha256=9d174cc9681184023a7d520079eb0c085208761c6562710c1de7263d08217ab6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/53/4f/cf180006c9eafed655c3c7a52a7fb45f3dd365cbde9be3ebb497a865bcad/matplotlib-3.2.0-cp37-cp37m-win_amd64.whl#sha256=d281862a68b0bfce8f9e02a8e5acaa5cfbec37f37320f59b52eaf54b6423ec13 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/7e/6e/3eb2e425945ef1e95fe797e6a6f020c48d2e83f091b1fd723e437c046e1b/matplotlib-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=ee8acb1d4ee204e5cfe361d8f00d7e52c68f81c099b6c6048a3c76bf2c6b46e6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/0c/cd/829b2795de5c6667133d39256a40deb7f4a12753872cf3f128f82d86d25c/matplotlib-3.2.0-cp38-cp38-manylinux1_x86_64.whl#sha256=be937f34047bc09ed22d6a19d970fdc61d5d3191aa62f3262fc7f308e6d2e7f9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/c3/1d/e89bd812c4837e3cc6d833d76b81f95b29110d0722dddf240f12387e94d4/matplotlib-3.2.0-cp38-cp38-win32.whl#sha256=97a03e73f9ab71db8e4084894550c3af420c8ab1989b5e1306261b17576bf61b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/06/ea/68c35d642a7c8ca74f4053963743824802875bb6c0215e78aee17d0a16cc/matplotlib-3.2.0-cp38-cp38-win_amd64.whl#sha256=d5287cfcabad6f0f71a2627c1bbb6fb0cddacb9844f6c91f210604faa508f562 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp373-pypy36_pp73-win32: https://files.pythonhosted.org/packages/60/19/231aa65f7a0809d8ff1232326710d0afbe2543833f26d465d85fa42cac6b/matplotlib-3.2.0-pp373-pypy36_pp73-win32.whl#sha256=fc84f7c7cf1c5a9dbceadb7546818228f019d3b113ce5e362120c895fbba2944 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/be/06/81367951cc50695830482eacefdc8289c68770db166a4d4283e7eac22dee/matplotlib-3.2.0.tar.gz#sha256=651d76daf9168250370d4befb09f79875daa2224a9096d97dfc3ed764c842be4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.2.0
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/94/77/a37c8877474f3b75dfe18f490189243d39aabd6c7629ffde5e5512d070fd/matplotlib-3.2.1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=e06304686209331f99640642dee08781a9d55c6e32abb45ed54f021f46ccae47 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/93/4b/52da6b1523d5139d04e02d9e26ceda6146b48f2a4e5d2abfdf1c7bac8c40/matplotlib-3.2.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=ce378047902b7a05546b6485b14df77b2ff207a0054e60c10b5680132090c8ee (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/0d/f0/0645c559163c661f475df18b28b3424b69d14064f67bf5c839e6d04deb12/matplotlib-3.2.1-cp36-cp36m-win32.whl#sha256=2466d4dddeb0f5666fd1e6736cc5287a4f9f7ae6c1a9e0779deff798b28e1d35 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/59/77/7a13ef25b0503311d8603074959c129cd60ef0eb26979aba7a7ed5b9e792/matplotlib-3.2.1-cp36-cp36m-win_amd64.whl#sha256=f4412241e32d0f8d3713b68d3ca6430190a5e8a7c070f1c07d7833d8c5264398 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/0d/61/b741990b429341bac1af5f5c645ee7aaa3bbe7daf3418d283c92c4b5ee82/matplotlib-3.2.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=e20ba7fb37d4647ac38f3c6d8672dd8b62451ee16173a0711b37ba0ce42bf37d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/b2/c2/71fcf957710f3ba1f09088b35776a799ba7dd95f7c2b195ec800933b276b/matplotlib-3.2.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=282b3fc8023c4365bad924d1bb442ddc565c2d1635f210b700722776da466ca3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/18/a5/9bad289d6c159b0d52ede9a72ac061cffa2f7447a7279c856b408c59c376/matplotlib-3.2.1-cp37-cp37m-win32.whl#sha256=c1cf735970b7cd424502719b44288b21089863aaaab099f55e0283a721aaf781 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/b4/4d/8a2c06cb69935bb762738a8b9d5f8ce2a66be5a1410787839b71e146f000/matplotlib-3.2.1-cp37-cp37m-win_amd64.whl#sha256=56d3147714da5c7ac4bc452d041e70e0e0b07c763f604110bd4e2527f320b86d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/1d/f6/4362df6969f25973eb04ee0ab147588401928faddebe19c73d222fd13161/matplotlib-3.2.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=af14e77829c5b5d5be11858d042d6f2459878f8e296228c7ea13ec1fd308eb68 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/01/9d/416ca5d453c776fa8db35d1bbfed65809e06ae021154f86c45d34f44ce39/matplotlib-3.2.1-cp38-cp38-manylinux1_x86_64.whl#sha256=aae7d107dc37b4bb72dcc45f70394e6df2e5e92ac4079761aacd0e2ad1d3b1f7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/d2/5c/8866094446c6b09360103677fc099fe1ea9eb3d72fad7d24b9b7b61bf40f/matplotlib-3.2.1-cp38-cp38-win32.whl#sha256=d35891a86a4388b6965c2d527b9a9f9e657d9e110b0575ca8a24ba0d4e34b8fc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/f1/83/30bd24c5b7d64542a897000d6d8e3d8067cbe2435f581d59308aaa68e962/matplotlib-3.2.1-cp38-cp38-win_amd64.whl#sha256=4bb50ee4755271a2017b070984bcb788d483a8ce3132fab68393d1555b62d4ba (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp373-pypy36_pp73-win32: https://files.pythonhosted.org/packages/5a/bc/5d3359ffddab58eb4a58176b0645f1fb73d17786a1a596947e81bee9afa9/matplotlib-3.2.1-pp373-pypy36_pp73-win32.whl#sha256=7a9baefad265907c6f0b037c8c35a10cf437f7708c27415a5513cf09ac6d6ddd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/4a/30/eb8e7dd8e3609f05c6920fa82f189302c832e5a0f6667aa96f952056bc0c/matplotlib-3.2.1.tar.gz#sha256=ffe2f9cdcea1086fc414e82f42271ecf1976700b8edd16ca9d376189c6d93aee (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.2.1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/36/30/c53b6cb841c25bfdc80bcf9a0b3e78ff8f06955c73242856dd94b7d0ca18/matplotlib-3.2.2-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=a47abc48c7b81fe6e636dde8a58e49b13d87d140e0f448213a4879f4a3f73345 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/e3/a8/bfd8e9ddac55a4a80235f7ccc286e4a08c97e6c4f035f21a27bcab7a51c8/matplotlib-3.2.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=20bcd11efe194cd302bd0653cb025b8d16bcd80442359bfca8d49dc805f35ec8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/0a/45/4d0b4334dc1341d4d4c37642f2af31c10ae79e37ec7d1866dba42e77286d/matplotlib-3.2.2-cp36-cp36m-win32.whl#sha256=2a6d64336b547e25730b6221e7aadfb01a391a065d43b5f51f0b9d7f673d2dd2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/82/ca/55d446bbfd42d219f24824a1449784c80029ff4239c12f5c3ff10d82c56e/matplotlib-3.2.2-cp36-cp36m-win_amd64.whl#sha256=4416825ebc9c1f135027a30e8d8aea0edcf45078ce767c7f7386737413cfb98f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4a/5c/ced2e398aad26b24a7beaa2b22830811dfc953c73a0b3b930e26c12d1d19/matplotlib-3.2.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=465c752278d27895e23f1379d6fcfa3a2990643b803c25e3bc16a10641d2346a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/d9/aa/22af3c636d6b87e8d7f8f28c02da338e348ed08beff1e2b58843f0f62fc1/matplotlib-3.2.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=81de040403a33bf3c68e9d4a40e26c8d24da00f7e3fadd845003b7e106785da7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/5d/81/c27c95df6e80e459df9a745a54c4851a2107160a1b0e8c73c4f60f34545d/matplotlib-3.2.2-cp37-cp37m-win32.whl#sha256=006413f08ba5db1f5b1e0d6fbdc2ac9058b062ccf552f57182563a78579c34b4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/93/77/94de079a0f9853070b479b333535ddffd1a0173f3f62ab6835cb07daafa7/matplotlib-3.2.2-cp37-cp37m-win_amd64.whl#sha256=da06fa530591a141ffbe1712bbeec784734c3436b40c942d21652f305199b5d9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/8d/b5/2309a0308d22cb8955c5140ad47080d990244df626877a86b86cebf153bc/matplotlib-3.2.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=894dd47c0a6ce38dc19bc87d1f7e2b0608310b2a18d1572291157450b05ce874 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/77/5c/6a3aa574ed33911a0b4deb66b3b9d2e72ed4bcbfd70f52a5546395156dd3/matplotlib-3.2.2-cp38-cp38-manylinux1_x86_64.whl#sha256=1ab264770e7cf2cf4feb99f22c737066aef21ddf1ec402dc255450ac15eacb7b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/9a/e6/2b0badaba976e0067ed0ee31c70be71f5ded3bc28d4ddbbc0c20ee273469/matplotlib-3.2.2-cp38-cp38-win32.whl#sha256=91c153f4318e3c67c035fd1185f5ea2613f15008b73b66985033033f6fe54bbd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/f7/5f/6983747ae9ca4c731ef16630a8729aaa81fe29f7cc2a5ac4b0b572b8252d/matplotlib-3.2.2-cp38-cp38-win_amd64.whl#sha256=a68e42e22f7fd190a532e4215e142276970c2d54040a0c46842fcb3db8b6ec5b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/6e/bd/ed88db75a6c650e399525543d1308743be0271f8878fc40f27cd612c654f/matplotlib-3.2.2-cp39-cp39-win32.whl#sha256=647cf232ccf6265d2ba1ac4103e8c8b6ac7b03a40da3421234ffb03dda217f59 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/a7/9c/400e053ce72b77e3fdc941606c93ca588f5b82d95c2aa44262a6edcdfbcf/matplotlib-3.2.2-cp39-cp39-win_amd64.whl#sha256=31d32c83bb2b617377c6156f75e88b9ec2ded289e47ad4ff0f263dc1019d88b1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-win32: https://files.pythonhosted.org/packages/f4/6b/0a49a237f94d2f60e3bb2b947a000a40c5134fe720168aca107e07ee1c1b/matplotlib-3.2.2-pp36-pypy36_pp73-win32.whl#sha256=67065d938df34478451af62fbd0670d2b51c4d859fb66673064eb5de8660dd7c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/9c/4b/06f4aa9bef6b5e4f177881b4dedd94faa6e7cb3d95dfaeaa8a1a8b541095/matplotlib-3.2.2.tar.gz#sha256=3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.2.2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/7c/f7/6cd0e6ab428be2ec914a003a89aedf89e6da51eaf1bc9a8c5e466a232ec5/matplotlib-3.3.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=44d5f9c556a06566e572c31e977fe750cc5fc25ad1983b99dbb0c9cb373ecc78 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/44/dd/525ea46c4fb1bfd255661a5cd171139d52684eaf12d7e269e4d74566771f/matplotlib-3.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl#sha256=9da4ad25ed5e1786b24ee19aa2caedcde6a31844521d6b546dafd418b87c3c6c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/16/a2/3a54233f353ac1410da9ff04d71127d3b272d06a3ddb934cf0a2013fe04f/matplotlib-3.3.0rc1-cp36-cp36m-win32.whl#sha256=2382d2a2df7ec99f92843161ce4c7bb54189a4aeb139c16baf92fa3f5c930ade (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/98/c0/5a595f406a0d4d6b04ab8d1202c54f5848ebd92e2e4cdf46f5b3981a6662/matplotlib-3.3.0rc1-cp36-cp36m-win_amd64.whl#sha256=e7c54447ffd658099f2fb14e0e70a19eced523ce8caae38e65cec2fa807c3050 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/68/be/c4b03d0a17649035dee719f9336b530153f92691d86f182f375ed375d25d/matplotlib-3.3.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=9fef911a7cd3f36707c3cd812030e09a7d4f557b4d3d964e6a4ca782dddb11de (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/bc/6c/2512b7be33030182b237dc512040c959b0f3441ce3c878018b639e47ca77/matplotlib-3.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl#sha256=b2425f5ab2914ccc7dde37d7811a7fdf5284bf9e6dfa72ac649da1f1a13db550 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/2a/51/187652994f5539887d1bc63367a2dd7f0a1172d9d981294e7c82984f4110/matplotlib-3.3.0rc1-cp37-cp37m-win32.whl#sha256=e5c4a30195bf262284ec3a4e28f0f8c31898f66d7124e143f851ffa981af291b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/5f/a6/5ed98753b2e90995ca1db93ca9aa4b4a2791e986c7864441ce09874e0382/matplotlib-3.3.0rc1-cp37-cp37m-win_amd64.whl#sha256=7010a0cc96303b7f7b436367fe58f37ca92a89e864202c43c3a284bdde26baf1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/fd/d0/7251115be4a2fd73342d149320253655a47d775911d9a5731749cc4deb2e/matplotlib-3.3.0rc1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=bcc4803720e58ace1e51009015899248b7d64eecb02e4838516a47a9934a190f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/2b/86/ffbfcfb663d5db5425d9227a0e2b3575b849fbc180997700ce06e978abaa/matplotlib-3.3.0rc1-cp38-cp38-manylinux1_x86_64.whl#sha256=1a05eeb5a5f9f35a0d69a01c9efc9ca48e6d6fdc907da8fbad28b33bc839905b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/91/e5/bbd0a738ee556130b1d4ad8623de3efc4fdcf10a41768033675c60aeb6d6/matplotlib-3.3.0rc1-cp38-cp38-win32.whl#sha256=d3e7a68de6e74f1f2936ea64d327733876d50aa6b1c0e0c7d51de19391204426 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/89/29/9722816fe1374587a3c699cda49bf673b34006161ead9df3877d9f3eacaa/matplotlib-3.3.0rc1-cp38-cp38-win_amd64.whl#sha256=a53494c7e29139d96eccbbc91dd281382b6219645d91422046b494b3f24a2774 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/4a/ee/c4a0ff1b18c44f031b05e6aa03975964dc3cbad6f5bfe5bc9c762aefc646/matplotlib-3.3.0rc1-cp39-cp39-win32.whl#sha256=6ca6bf7e10c9387d3ce4b6c2faae28cba404d0824c3dc40072f00919dff9015e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/cd/83/cf041b416e8183b01d2cc776070073efdf0c34ac4e931d9c6ddb7737d43f/matplotlib-3.3.0rc1-cp39-cp39-win_amd64.whl#sha256=28c3b07079343d7be300cf4e33f95a700a2bb0fefa7cce05e8016a0c15e3f7bc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/9e/d5/3c08575959065ca475b0df0ef6ae3f0832d3766104be021369a4abf324c6/matplotlib-3.3.0rc1.tar.gz#sha256=2ae5f279e6d9afc25cde907c514b2819bbd8a59551c883aa96777077635127ef (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.0rc1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/76/6f/43fe1baad04d1ed00f15b7e91aeb0204d02ccc06c9b7b29b5954ee14865f/matplotlib-3.3.0-1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=b0786ac32983191fcd9cc0230b4ec2f8b3c25dee9beca46ca506c5d6cc5c593d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/93/ae/81b1c98ae97350711adb021ee12ea678b37f608ec2faa35c3a7db11795fa/matplotlib-3.3.0-1-cp36-cp36m-manylinux1_x86_64.whl#sha256=f9753c6292d5a1fe46828feb38d1de1820e3ea109a5fea0b6ea1dca6e9d0b220 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/c7/ba/f0acf68139ba7e733e8f84618affa21fabdbbe75df51bd2089d969db9581/matplotlib-3.3.0-1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=6aa7ea00ad7d898704ffed46e83efd7ec985beba57f507c957979f080678b9ea (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/1c/15/3fea1bfb7e5b77b7cca9c6010a9cabc58ea125385345ecb6f5832eb8b49a/matplotlib-3.3.0-1-cp37-cp37m-manylinux1_x86_64.whl#sha256=19cf4db0272da286863a50406f6430101af129f288c421b1a7f33ddfc8d0180f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/10/40/81bdeaf5fd9928b46b671ba5af588dfa5cb118bbf134fab47747c1e59fa4/matplotlib-3.3.0-1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=ebb6168c9330309b1f3360d36c481d8cd621a490cf2a69c9d6625b2a76777c12 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/ed/79/1915484bd8c60d63c33fd3f531a24b8453256cad1fb473debbb91fadebdb/matplotlib-3.3.0-1-cp38-cp38-manylinux1_x86_64.whl#sha256=695b4165520bdfe381d15a6db03778babb265fee7affdc43e169a881f3f329bc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/49/0b/ca62c1423378f637e8ccb75cb55baddd7ead0856fc841c68fce29e7e3e1d/matplotlib-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=9ccc651261b7044ffc3b1e2f9af17b1ef4c6a12fc080b5a7353ef0b53a50be28 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/1a/15/f91d6ee55bff6e8b06caf860d25a56262f5978c071893ac80d942c20ba32/matplotlib-3.3.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=e3868686f3023644523df486fc224b0af4349f3cdb933b0a71f261a574d7b65f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/be/95/68645f9d122c08fd0d754551ef631821e197b82864576fbbb69190318229/matplotlib-3.3.0-cp36-cp36m-win32.whl#sha256=7c9adba58a67d23cc131c4189da56cb1d0f18a237c43188d831a44e4fc5df15a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/a9/6f/32fdc7389cb06838e20a7896e272d5ce5284f3008d6148b679775cf242f8/matplotlib-3.3.0-cp36-cp36m-win_amd64.whl#sha256=855bb281f3cc8e23ef66064a2beb229674fdf785638091fc82a172e3e84c2780 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d0/3f/49def0efd7a751add6b660a05881fba08641ca0b8e451bc2d0d5cc4832e4/matplotlib-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=7ce8f5364c74aac06abad84d8744d659bd86036e86c4ebf14c75ae4292597b46 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/e5/e7/ad86103f0e2e58dd0a2d87c8d15327f1c61f0c2027ce9b250a870a3cbd2b/matplotlib-3.3.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=605e4d43b421524ad955a56535391e02866d07bce27c644e2c99e25fb59d63d1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/5d/71/2bb93242509aa747f3d2d21fdfa704f18aebe4873d86eb5db05a3276dacf/matplotlib-3.3.0-cp37-cp37m-win32.whl#sha256=cef05e9a2302f96d6f0666ee70ac7715cbc12e3802d8b8eb80bacd6ab81a0a24 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/4d/7c/dcc6b3315f865285332bccf663fa82e441bed095246006918a44fdee5bdb/matplotlib-3.3.0-cp37-cp37m-win_amd64.whl#sha256=bf8d527a2eb9a5db1c9e5e405d1b1c4e66be983620c9ce80af6aae430d9a0c9c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a4/77/577afbbb62cedd3f832bd84e28b8cf0098c8aae67b6a1e9281e2e8d51c2a/matplotlib-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=c06ea133b44805d42f2507cb3503f6647b0c7918f1900b5063f5a8a69c63f6d2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/fb/5e/f5882151c9700261d803668a94d3f48e041154e46fea08849791003b876f/matplotlib-3.3.0-cp38-cp38-manylinux1_x86_64.whl#sha256=09b4096748178bcc764b81587b00ab720eac24965d2bf44ecbe09dcf4e8ed253 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/b4/00/a7461ad670601b23d14534afb3abe4cba0ffceef5f5c8dbd51d6e749a092/matplotlib-3.3.0-cp38-cp38-win32.whl#sha256=c1f850908600efa60f81ad14eedbaf7cb17185a2c6d26586ae826ae5ce21f6e0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/a3/f0/0e5f5fe42696aef6a5ab7555658f700ea1caee51406751e559b596dbb70d/matplotlib-3.3.0-cp38-cp38-win_amd64.whl#sha256=2a9d10930406748b50f60c5fa74c399a1c1080aa6ce6e3fe5f38473b02f6f06d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/cb/23/9a59de3d707f537771d47ecd8fcfae0d9bc7bae994fa01d27525f0bc28e8/matplotlib-3.3.0-cp39-cp39-win32.whl#sha256=244a9088140a4c540e0a2db9c8ada5ad12520efded592a46e5bc43ff8f0fd0aa (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/2c/27/96c60f3bfbe65c327bb47aa6c0f56260eefd2862dc9bc039400977706152/matplotlib-3.3.0-cp39-cp39-win_amd64.whl#sha256=f74c39621b03cec7bc08498f140192ac26ca940ef20beac6dfad3714d2298b2a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/7d/d4/e4c40c62cd8608ca09f0684e64139c56512e195f2351ac41a472d4dc8b38/matplotlib-3.3.0.tar.gz#sha256=24e8db94948019d531ce0bcd637ac24b1c8f6744ac86d2aa0eb6dbaeb1386f82 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.0
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/40/6a/133221790e7eaef61b55c770f9c7b7017878cafc50501efa22c48a115fad/matplotlib-3.3.1-1-cp36-cp36m-win32.whl#sha256=fab11637734eb14affb9c5e20d44d69429c18b49595d6e67c69295de24827fc4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/29/f2/629dc874553537ba63e62f2b3e00855dedff5fbfe3bc7e96eb653e93ecf3/matplotlib-3.3.1-1-cp36-cp36m-win_amd64.whl#sha256=24392ac1a382ed753505286f1a1483bcfd67ed0c72d51be10c4c2013e386d0b7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/6a/47/667877852f870b1b509bbcada8b7b8cf79f09d76e4a507f800d9910c954f/matplotlib-3.3.1-1-cp37-cp37m-win32.whl#sha256=c4ffb25b9855bdb6cdaf21bbd4ab2c229be539248304ac5215b94c816ea6e32e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/87/67/e18ed11f774f42f9440eba7787af3104fb7d18c9bc4fbc19fae58ebe3df1/matplotlib-3.3.1-1-cp37-cp37m-win_amd64.whl#sha256=5a42c84264a1acbbf01c073a7bd05a0e80d99f94f10020d613b1b0526af9dcc2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/8e/a7/331c59854f1787e82a538d79ada55b91ed5f068924612f06b32e229bc131/matplotlib-3.3.1-1-cp38-cp38-win32.whl#sha256=bc978374b43737f2bbc4a6ec48e52ae8c92be6278a80d0e2ce92f0eb0841f15c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/9a/01/d93c5a577c7a1ce728c4a021b8e0ac9bb37dc7f355402f690bb0a2c61194/matplotlib-3.3.1-1-cp38-cp38-win_amd64.whl#sha256=6d0f03079f655ca0a2d2e0bf49c28e1ec43d9d544c33d8da1a88765f23018ecc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/45/22/0e9d049f061e5661b89dccab81457143d4866a71d0c56cc855e4ecfbf4f4/matplotlib-3.3.1-1-cp39-cp39-win32.whl#sha256=2375f039b8c6ad6c1d03f01bf31f086bbbf997bf25e246f3b67f69969cde3d98 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/87/bd/a38055e9e3231d04e6df47fdca089fb851d4c872e9ca456015abf24a5d44/matplotlib-3.3.1-1-cp39-cp39-win_amd64.whl#sha256=233bef5e3b3494f3b7057595ca814f23ba0ce67a03632ddf677be5132128b3db (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-win32: https://files.pythonhosted.org/packages/8b/59/2c2189436714861b63e0ab70abbf2656aa14773b3e00e78a8bcff5583207/matplotlib-3.3.1-1-pp36-pypy36_pp73-win32.whl#sha256=f62c0b9a5d38c26673a8862cbae4d26cffcda260848e4278246b4e00f5a95eaf (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/bc/05/38de828456fe962885c2577d5519fcec50f8e1537a3b58839eccff34eb38/matplotlib-3.3.1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=282f8a077a1217f9f2ac178596f27c1ae94abbc6e7b785e1b8f25e83918e9199 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/a0/65/ccb89291b0853623a2f889b94f6c8ff15b887da20984d31702e572f2ae78/matplotlib-3.3.1-cp36-cp36m-manylinux1_i686.whl#sha256=83ae7261f4d5ab387be2caee29c4f499b1566f31c8ac97a0b8ab61afd9e3da92 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/96/a7/b6fa244fd8a8814ef9408c8a5a7e4ed0340e232a6f0ce2046b42e50672c0/matplotlib-3.3.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=1f9cf2b8500b833714a193cb24281153f5072d55b2e486009f1e81f0b7da3410 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/38/01/ce009a56d39ddf87e61c7f940fe2d94bd6c756fe1d3965b0b71ac77d71d5/matplotlib-3.3.1-cp36-cp36m-win32.whl#sha256=0dc15e1ad84ec06bf0c315e6c4c2cced13a21ce4c2b4955bb75097064a4b1e92 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/e3/d0/4b80e16d6f90188ed7a5c5277e365286c7a2cfba6062b06e483887fe5c05/matplotlib-3.3.1-cp36-cp36m-win_amd64.whl#sha256=ffbae66e2db70dc330cb3299525f97e1c0efdfc763e04e1a4e08f968c7ad21f0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/37/f9/e5efb874d1425a6eb3d1431dc9d75cb89ac4d040c28e991c4fbd946a670b/matplotlib-3.3.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=88c6ab4a32a7447dad236b8371612aaba5c967d632ff11999e0478dd687f2c58 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/f9/13/55e74c36229483484854520061a111d3ce9b363c736e6a516fafdc80fa9d/matplotlib-3.3.1-cp37-cp37m-manylinux1_i686.whl#sha256=cc2d6b47c8fee89da982a312b54949ec0cd6a7976a8cafb5b62dea6c9883a14d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/f1/b9/712584f12f840968a14969a1fe298ffdeaa9c4b484b3bfd973c74c4a481d/matplotlib-3.3.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=636c6330a7dcb18bac114dbeaff314fbbb0c11682f9a9601de69a50e331d18d7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/ed/ca/fd8746cf51ccdbe8b81e4559cb688fe89dec224c82ccf7165635ab717971/matplotlib-3.3.1-cp37-cp37m-win32.whl#sha256=73a493e340064e8fe03207d9333b68baca30d9f0da543ae4af6b6b4f13f0fe05 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/af/e9/921fb9895bfa8afd93515702ac57a4c63345333c9920d3d1b81f6330e9a2/matplotlib-3.3.1-cp37-cp37m-win_amd64.whl#sha256=6739b6cd9278d5cb337df0bd4400ad37bbd04c6dc7aa2c65e1e83a02bc4cc6fd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/e8/33/adfde3ff33cf5acaa1c2c7264a176f3b32efe0c0aa947d90e3d5406c4d14/matplotlib-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=79f0c4730ad422ecb6bda814c9a9b375df36d6bd5a49eaa14e92e5f5e3e95ac3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/23/0a/3d72c5f0ad0c38c9eb8653ae6f6d7ed260549f100144ef7a419a947e112b/matplotlib-3.3.1-cp38-cp38-manylinux1_i686.whl#sha256=e4d6d3afc454b4afc0d9d0ed52a8fa40a1b0d8f33c8e143e49a5833a7e32266b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/61/93/9cd72fb8e4a1f5b2960876d31c3ef460aa93d67e1e0d60dcaf0e36adba3b/matplotlib-3.3.1-cp38-cp38-manylinux1_x86_64.whl#sha256=96a5e667308dbf45670370d9dffb974e73b15bac0df0b5f3fb0b0ac7a572290e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/47/1a/856e7edb046dd2c256a07749ddf285bb9e93fc599bde2af9bf6245b4b91f/matplotlib-3.3.1-cp38-cp38-win32.whl#sha256=bd8fceaa3494b531d43b6206966ba15705638137fc2dc5da5ee560cf9476867b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/21/18/3b6436be28f8f5c4f7c27fe7d3d0b26b1a4ec27712d336b9b0483b44ccc2/matplotlib-3.3.1-cp38-cp38-win_amd64.whl#sha256=1507c2a8e4662f6fa1d3ecc760782b158df8a3244ecc21c1d8dbb1cd0b3f872e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d4/7a/046f6ec22bf8486c3abc7009b87c975b3a37a3810973e022fad3f28c83fe/matplotlib-3.3.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl#sha256=2c3619ec2a5ead430a4536ebf8c77ea55d8ce36418919f831d35bc657ed5f27e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/81/d5/9fb08442d181446ad96dd254dfa03b3229f405d7d277daf4875ad2da2877/matplotlib-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl#sha256=9703bc00a94a94c4e94b2ea0fbfbc9d2bb21159733134639fd931b6606c5c47e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/58/bd/d3b13e93c01226901ceb50a14c110b5722f446e456f7f4fd7fd231b33742/matplotlib-3.3.1.tar.gz#sha256=87f53bcce90772f942c2db56736788b39332d552461a5cb13f05ff45c1680f0e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/da/0a/63e7c8681f0e9af130b0ad2e2321c07b50dc7edd1482a41d3c262e5c856f/matplotlib-3.3.2-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=27f9de4784ae6fb97679556c5542cf36c0751dccb4d6407f7c62517fa2078868 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/d9/f7/7746ca14bb04abc1fdc02997c1712c71bf3b5f4510bfa8494c7302196e1e/matplotlib-3.3.2-cp36-cp36m-manylinux1_i686.whl#sha256=06866c138d81a593b535d037b2727bec9b0818cadfe6a81f6ec5715b8dd38a89 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/cd/d6/8c4dfb23151d5a494c66ebbfdb5c8c433b44ec07fae52da5939fcda0943f/matplotlib-3.3.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=5ccecb5f78b51b885f0028b646786889f49c54883e554fca41a2a05998063f23 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/fd/63/49eca75269f630be93e2ce02e44ad787f978160e1f0391620c82c4dbc6f4/matplotlib-3.3.2-cp36-cp36m-win32.whl#sha256=69cf76d673682140f46c6cb5e073332c1f1b2853c748dc1cb04f7d00023567f7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/1f/99/1b9c3b3a871df3174d17910f3d7422a24280b8355377fec0fb1264a20e0c/matplotlib-3.3.2-cp36-cp36m-win_amd64.whl#sha256=371518c769d84af8ec9b7dcb871ac44f7a67ef126dd3a15c88c25458e6b6d205 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/63/f0/c2c11e34d43f657df8ae05be5fa991200a2ed576e3694244a9dc766c14c3/matplotlib-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=793e061054662aa27acaff9201cdd510a698541c6e8659eeceb31d66c16facc6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/ce/4a/bf45da5005391309958775685f0ad75d004e062e4b10b6a0517ca8d7411a/matplotlib-3.3.2-cp37-cp37m-manylinux1_i686.whl#sha256=16b241c3d17be786966495229714de37de04472da472277869b8d5b456a8df00 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/87/a6/8d7d06f6b69236a3c1818157875ceb1259ba0d9df4194f4fe138ffdc0f41/matplotlib-3.3.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=3fb0409754b26f48045bacd6818e44e38ca9338089f8ba689e2f9344ff2847c7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/b1/79/d20d899f77ec3d6d23a28a838b64b1e72879ebaf26fddb5501c51b3e7517/matplotlib-3.3.2-cp37-cp37m-win32.whl#sha256=548cfe81476dbac44db96e9c0b074b6fb333b4d1f12b1ae68dbed47e45166384 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/81/51/dadfa4433ec13d9966393b1726a5c22d7773433aa7797b48980965f32e07/matplotlib-3.3.2-cp37-cp37m-win_amd64.whl#sha256=f0268613073df055bcc6a490de733012f2cf4fe191c1adb74e41cec8add1a165 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/fe/5c/ff4504d79a62aa94dda72ba6a4de483cf44ca364f406ab8a7c86d7db9bab/matplotlib-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=57be9e21073fc367237b03ecac0d9e4b8ddbe38e86ec4a316857d8d93ac9286c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/da/80/652debe4e7cf68ab00622764c4fdc62715d84b72709d1c51e683e0b1a56c/matplotlib-3.3.2-cp38-cp38-manylinux1_i686.whl#sha256=be2f0ec62e0939a9dcfd3638c140c5a74fc929ee3fd1f31408ab8633db6e1523 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/93/95/83cca4fe4e4925142542acd318cb59b188eeb7a53bc24a6aacc0834a23b9/matplotlib-3.3.2-cp38-cp38-manylinux1_x86_64.whl#sha256=c5d0c2ae3e3ed4e9f46b7c03b40d443601012ffe8eb8dfbb2bd6b2d00509f797 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/d3/51/7f418cab041bfa1c613d4713dd32036d20254e7253b8eb03c61f1589d85c/matplotlib-3.3.2-cp38-cp38-win32.whl#sha256=a522de31e07ed7d6f954cda3fbd5ca4b8edbfc592a821a7b00291be6f843292e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/ea/6c/c9dd8f3e98469013ea215ec3b71176099e1bf3adcad718d81e481796541d/matplotlib-3.3.2-cp38-cp38-win_amd64.whl#sha256=8bc1d3284dee001f41ec98f59675f4d723683e1cc082830b440b5f081d8e0ade (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a9/d5/83c196029229b9d33a4e3b9cabe2c91b3804b0912d1abbbb1d3f67e760a1/matplotlib-3.3.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl#sha256=799c421bc245a0749c1515b6dea6dc02db0a8c1f42446a0f03b3b82a60a900dc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/b8/8c/7889bad1e09f86a9f970ed8a60b9b645fee9b1a03d21930feb09619276c1/matplotlib-3.3.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl#sha256=2f5eefc17dc2a71318d5a3496313be5c351c0731e8c4c6182c9ac3782cfc4076 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/2b/4c/fe4b36325795524f35d39edc390c89584e9a901df9e615df6f5effddaa0e/matplotlib-3.3.2.tar.gz#sha256=3d2edbf59367f03cd9daf42939ca06383a7d7803e3993eb5ff1bee8e8a3fbb6b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/66/48/9c718249acd0e7155ef74236f61bb922ef6a5bfcb6f13923e57be9fe5ebd/matplotlib-3.3.3-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=b2a5e1f637a92bb6f3526cc54cc8af0401112e81ce5cba6368a1b7908f9e18bc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/24/72/e33aef782d3355008647a2de03bbd8e29e90ecfc4265711f09bd664fdb0d/matplotlib-3.3.3-cp36-cp36m-manylinux1_i686.whl#sha256=c586ac1d64432f92857c3cf4478cfb0ece1ae18b740593f8a39f2f0b27c7fda5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/d2/43/2bd63467490036697e7be71444fafc7b236923d614d4521979a200c6b559/matplotlib-3.3.3-cp36-cp36m-manylinux1_x86_64.whl#sha256=9b03722c89a43a61d4d148acfc89ec5bb54cd0fd1539df25b10eb9c5fa6c393a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/bc/70/f027bca1786560db256a71d1941e31e988822f6ccad3d34d49973c86cfd4/matplotlib-3.3.3-cp36-cp36m-win32.whl#sha256=2c2c5041608cb75c39cbd0ed05256f8a563e144234a524c59d091abbfa7a868f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/39/76/9959c81f3b0774db4052fcf2121c8220bdc1d111212dd2692d90fc1c6471/matplotlib-3.3.3-cp36-cp36m-win_amd64.whl#sha256=c092fc4673260b1446b8578015321081d5db73b94533fe4bf9b69f44e948d174 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/ff/0d/18c590b08f91d14376174bcf1acf96a9d4b35045f7344d046b60444399f2/matplotlib-3.3.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=27c9393fada62bd0ad7c730562a0fecbd3d5aaa8d9ed80ba7d3ebb8abc4f0453 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/93/e3/dfda34901c2848514c4655600ef559b9e60ee160424c792b5aff266681fb/matplotlib-3.3.3-cp37-cp37m-manylinux1_i686.whl#sha256=b8ba2a1dbb4660cb469fe8e1febb5119506059e675180c51396e1723ff9b79d9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/30/f2/10c822cb0ca5ebec58bd1892187bc3e3db64a867ac26531c6204663fc218/matplotlib-3.3.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=0caa687fce6174fef9b27d45f8cc57cbc572e04e98c81db8e628b12b563d59a2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/38/86/f800cbc33b4ccf0f2b4e36a72298f169ce93aa10c5ad8a10bd13084df2b7/matplotlib-3.3.3-cp37-cp37m-win32.whl#sha256=b7b09c61a91b742cb5460b72efd1fe26ef83c1c704f666e0af0df156b046aada (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/24/02/202982cbc4ab7a5a87c7f8d16e51d464016af742d5fb2d2b6b23116caec5/matplotlib-3.3.3-cp37-cp37m-win_amd64.whl#sha256=6ffd2d80d76df2e5f9f0c0140b5af97e3b87dd29852dcdb103ec177d853ec06b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/e8/7a/e3563e34443bb3f65fe0c301122124523b1543ae72b4c77442a548beeb5a/matplotlib-3.3.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=5111d6d47a0f5b8f3e10af7a79d5e7eb7e73a22825391834734274c4f312a8a0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/64/dd/5e6a32f892f54c2038eec8f836048edc5501eb15866005045eefaeab76af/matplotlib-3.3.3-cp38-cp38-manylinux1_i686.whl#sha256=a4fe54eab2c7129add75154823e6543b10261f9b65b2abe692d68743a4999f8c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/de/cf/d81fece6931ab0a3427eb29c2da7c3dc8e611927609d737a55964a3e0ef5/matplotlib-3.3.3-cp38-cp38-manylinux1_x86_64.whl#sha256=83e6c895d93fdf93eeff1a21ee96778ba65ef258e5d284160f7c628fee40c38f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/cc/10/0f6301ef86ec6d960e3292854494dfe81b794c19383495aa90003939a7ad/matplotlib-3.3.3-cp38-cp38-win32.whl#sha256=b26c472847911f5a7eb49e1c888c31c77c4ddf8023c1545e0e8e0367ba74fb15 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/42/7b/7c05e601af729d8289876aa00f530b27aea9b11768a2846bc941f9d058ef/matplotlib-3.3.3-cp38-cp38-win_amd64.whl#sha256=09225edca87a79815822eb7d3be63a83ebd4d9d98d5aa3a15a94f4eee2435954 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/10/e7/1a9fd930260671a06f73aa882769e5e0d10e5924dd96161f138e26a2f095/matplotlib-3.3.3-cp39-cp39-macosx_10_9_x86_64.whl#sha256=eb6b6700ea454bb88333d98601e74928e06f9669c1ea231b4c4c666c1d7701b4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/0d/23/7fd44a1eb53ed460098cf9736cd45d2d36ad284c9f3021478460b6d4c21f/matplotlib-3.3.3-cp39-cp39-manylinux1_i686.whl#sha256=2d31aff0c8184b05006ad756b9a4dc2a0805e94d28f3abc3187e881b6673b302 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/e4/c8/e5da564a1cc0e9ce8194e2e5e8d59ff3dcaeecfedce4c1a6d7b800f3e12c/matplotlib-3.3.3-cp39-cp39-manylinux1_x86_64.whl#sha256=d082f77b4ed876ae94a9373f0db96bf8768a7cca6c58fc3038f94e30ffde1880 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/1f/f7/4333c3f457268ad6919853505784a83600a9992cfd76f2b418c87703ac78/matplotlib-3.3.3-cp39-cp39-win32.whl#sha256=e71cdd402047e657c1662073e9361106c6981e9621ab8c249388dfc3ec1de07b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/b0/90/294b5e0df0991897bd66509079b1881068ae24238ba005eaa81ac285a831/matplotlib-3.3.3-cp39-cp39-win_amd64.whl#sha256=756ee498b9ba35460e4cbbd73f09018e906daa8537fff61da5b5bf8d5e9de5c7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/2a/32/e536ce94779d8366edacbc1644ff2c4973c6b68b36a8858cf1d83348f345/matplotlib-3.3.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl#sha256=7ad44f2c74c50567c694ee91c6fa16d67e7c8af6f22c656b80469ad927688457 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/c7/e7/26df2297b7d41beec3f8bc9330082a85722f953e53f4549d80a2d89e4fe8/matplotlib-3.3.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl#sha256=3a4c3e9be63adf8e9b305aa58fb3ec40ecc61fd0f8fd3328ce55bc30e7a2aeb0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/94/9d/6b09ba15c07d0252844f009a04631727615fe8a8254f7cdd3fe7cd4df590/matplotlib-3.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl#sha256=746897fbd72bd462b888c74ed35d812ca76006b04f717cd44698cdfc99aca70d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/73/d2/85471e0a4ad20b16a0617ec877dbfdaafacffa620378ebcc497216259ad6/matplotlib-3.3.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl#sha256=5ed3d3342698c2b1f3651f8ea6c099b0f196d16ee00e33dc3a6fee8cb01d530a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/7b/b3/7c48f648bf83f39d4385e0169d1b68218b838e185047f7f613b1cfc57947/matplotlib-3.3.3.tar.gz#sha256=b1b60c6476c4cfe9e5cf8ab0d3127476fd3d5f05de0f343a452badaad0e4bdec (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/77/bd/a70d352f3c24bd444f3cf182f232cca421de23098fba2cf34df1defa68e6/matplotlib-3.3.4-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=672960dd114e342b7c610bf32fb99d14227f29919894388b41553217457ba7ef (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/b2/01/53d86b08786941620915dd31381571d667948e9d76ae44491538fbe111e1/matplotlib-3.3.4-cp36-cp36m-manylinux1_i686.whl#sha256=7c155437ae4fd366e2700e2716564d1787700687443de46bcb895fe0f84b761d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/09/03/b7b30fa81cb687d1178e085d0f01111ceaea3bf81f9330c937fb6f6c8ca0/matplotlib-3.3.4-cp36-cp36m-manylinux1_x86_64.whl#sha256=a17f0a10604fac7627ec82820439e7db611722e80c408a726cd00d8c974c2fb3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/d7/57/6ba8a29b4795a4430e70c91d31b92673723f09d403bc15d398e9e0153976/matplotlib-3.3.4-cp36-cp36m-win32.whl#sha256=215e2a30a2090221a9481db58b770ce56b8ef46f13224ae33afe221b14b24dc1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/da/75/7bb16e22aa3f8d23a3afd065a7c933de71b67561c4561cf162fbc5d94221/matplotlib-3.3.4-cp36-cp36m-win_amd64.whl#sha256=348e6032f666ffd151b323342f9278b16b95d4a75dfacae84a11d2829a7816ae (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/7e/32/46285e083ce5b4a46468236e3073c794324700e62d7fbf26894ec390d99a/matplotlib-3.3.4-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=94bdd1d55c20e764d8aea9d471d2ae7a7b2c84445e0fa463f02e20f9730783e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/76/f2/97e2507c0dcf6fd43c86822a27bca8c9f96bde59e0e29afe9a1086af9136/matplotlib-3.3.4-cp37-cp37m-manylinux1_i686.whl#sha256=a1acb72f095f1d58ecc2538ed1b8bca0b57df313b13db36ed34b8cdf1868e674 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/23/3d/db9a6b3c83c9511301152dbb64a029c3a4313c86eaef12c237b13ecf91d6/matplotlib-3.3.4-cp37-cp37m-manylinux1_x86_64.whl#sha256=46b1a60a04e6d884f0250d5cc8dc7bd21a9a96c584a7acdaab44698a44710bab (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/10/3d/e511ca883ecb94db7da721f47eb4be7736d6b173716a6d329dcc66ebf422/matplotlib-3.3.4-cp37-cp37m-win32.whl#sha256=ed4a9e6dcacba56b17a0a9ac22ae2c72a35b7f0ef0693aa68574f0b2df607a89 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/40/7a/535fb3edda5bcec663b9546a5f4e931ead59e44e567ac5e06af0f86cd138/matplotlib-3.3.4-cp37-cp37m-win_amd64.whl#sha256=c24c05f645aef776e8b8931cb81e0f1632d229b42b6d216e30836e2e145a2b40 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a7/cf/30e026703d8748d0109c201329b36369fa1ecb2ac404cfd588a37d858f6c/matplotlib-3.3.4-cp38-cp38-macosx_10_9_x86_64.whl#sha256=7310e353a4a35477c7f032409966920197d7df3e757c7624fd842f3eeb307d3d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/9c/30/c03afc252d0bf8b8ca604cec2ccf87e1868a1abdb2c30c296cd9d0b5cdc6/matplotlib-3.3.4-cp38-cp38-manylinux1_i686.whl#sha256=451cc89cb33d6652c509fc6b588dc51c41d7246afdcc29b8624e256b7663ed1f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/ab/20/60cfe5d611ac86df07b7b1f9b9582f22f7eda5edbe2124ba85bdf3133822/matplotlib-3.3.4-cp38-cp38-manylinux1_x86_64.whl#sha256=3d2eb9c1cc254d0ffa90bc96fde4b6005d09c2228f99dfd493a4219c1af99644 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/b8/5c/fb023aa63660dcf7223f956f6b541809df22b3df02d4a1509e7df55f40ea/matplotlib-3.3.4-cp38-cp38-win32.whl#sha256=e15fa23d844d54e7b3b7243afd53b7567ee71c721f592deb0727ee85e668f96a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/85/31/5358cfbd8d88bc2efe1481d6f938e019697f0dc8222900a5ff46505bea36/matplotlib-3.3.4-cp38-cp38-win_amd64.whl#sha256=1de0bb6cbfe460725f0e97b88daa8643bcf9571c18ba90bb8e41432aaeca91d6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/db/ff/404aad32f8fc9bd6173454a094175478d325b522e07835c73de2652d7801/matplotlib-3.3.4-cp39-cp39-macosx_10_9_x86_64.whl#sha256=f44149a0ef5b4991aaef12a93b8e8d66d6412e762745fea1faa61d98524e0ba9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/87/1c/4c1cc9158017feac94a69f27dc4016b48562785398a4925fd46ab436b1b5/matplotlib-3.3.4-cp39-cp39-manylinux1_i686.whl#sha256=746a1df55749629e26af7f977ea426817ca9370ad1569436608dc48d1069b87c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/e8/62/b060f66406090ef62faf264ba336396b5c3f96f4d2891431c1cdbeeb746c/matplotlib-3.3.4-cp39-cp39-manylinux1_x86_64.whl#sha256=5f571b92a536206f7958f7cb2d367ff6c9a1fa8229dc35020006e4cdd1ca0acd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/c6/a9/34b140f09ec6c8b14ef98ae9a0c8014ee0e575b688a672815e569cfc9253/matplotlib-3.3.4-cp39-cp39-win32.whl#sha256=9265ae0fb35e29f9b8cc86c2ab0a2e3dcddc4dd9de4b85bf26c0f63fe5c1c2ca (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/9c/64/e4a8012e0e38513b978b15bf883540c4cc3e998ada03787de9dbbf0828de/matplotlib-3.3.4-cp39-cp39-win_amd64.whl#sha256=9a79e5dd7bb797aa611048f5b70588b23c5be05b63eefd8a0d152ac77c4243db (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d4/68/4b1952891af81d6fab8956cf82b1a8e61275661c5696de131521ec6953ba/matplotlib-3.3.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl#sha256=1e850163579a8936eede29fad41e202b25923a0a8d5ffd08ce50fc0a97dcdc93 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp36-pypy36_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/29/f3/52e037a72cd6ff98983f553b878e1374678034e45c50ea03811807c59c7a/matplotlib-3.3.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl#sha256=d738acfdfb65da34c91acbdb56abed46803db39af259b7f194dc96920360dbe4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d5/46/bdcd3e9e176beff77a9214c04afb9da82268560cfae0cc36556f041c9a13/matplotlib-3.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl#sha256=aa49571d8030ad0b9ac39708ee77bd2a22f87815e12bdee52ecaffece9313ed8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/86/af/3a877645addc42a22f7c484f40644713bb9eb365602d5fba64c9b92c36cb/matplotlib-3.3.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl#sha256=cf3a7e54eff792f0815dbbe9b85df2f13d739289c93d346925554f71d484be78 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/22/d4/e7ca532e68a9357742604e1e4ae35d9c09a4a810de39a9d80402bd12f50f/matplotlib-3.3.4.tar.gz#sha256=3e477db76c22929e4c6876c44f88d790aacdf3c3f8f3a90cb1975c0bf37825b0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.6), version: 3.3.4
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/49/1d/936e70d22367b4489856ed83a31d86c926a6e66a838b40134b2e8c499a4f/matplotlib-3.4.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=8d99a355a0138e158eed6225fdd39094486a6f2a7c47d6bed2a76cd823452d5c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/8f/fd/9123596582f482bd871c8e09da5e37ffd19f50438eb5b9f4d62fc2f573c6/matplotlib-3.4.0rc1-cp37-cp37m-manylinux1_i686.whl#sha256=84878c9fde156f594354a5785a861a70fa4682779e30af26e630b6bb433244b5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/11/93/095aaa393a309b7abb6443a68e63f7472bf5b2805d71703fbbcdc69bd6a0/matplotlib-3.4.0rc1-cp37-cp37m-manylinux1_x86_64.whl#sha256=c9b18bd72cdba7960167f15128322509fc536c57a05aff2b4ef456ee9fd34d4d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/74/d7/6d921aa4039b204df631d2ac898e563ee50f4a8aca1549a71181a9ed4f1a/matplotlib-3.4.0rc1-cp37-cp37m-win32.whl#sha256=2ae449b3d4fee20726c84356eba15b60ae8752b712a76f98cf60b093d6892e8f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/e2/8f/78b611b3bb6520a572fa483e11a30c4300afedae64d87502e7b7778ef0aa/matplotlib-3.4.0rc1-cp37-cp37m-win_amd64.whl#sha256=d0b750678e6ebaf2419dfee45be6df1905af9adc0e2373041af236b39fb811d0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/e2/72/0faa1001791c0a02a9c4cc4b383c6ff920ab7570e6bf2cb1c42636e0a1c8/matplotlib-3.4.0rc1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=14f0c46d8226610774e79358cff91a9edd83e2512cad34666d050ac0be965d25 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/b1/05/fb78345ef88a94789de60b2b29d657b79c7adff805d1b27c8ad25f3d7b36/matplotlib-3.4.0rc1-cp38-cp38-manylinux1_i686.whl#sha256=0a56c450f08269fc7a180719fb7f8be953d1566201e1003057d657bd2528250b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/73/8d/5862fe2bfbbfb5af08bdd1410f60f4c913ba6c7b28293e6b3a5d9eb0136a/matplotlib-3.4.0rc1-cp38-cp38-manylinux1_x86_64.whl#sha256=e1690740096414e8a797c6498d0acc19e8dafc856ea56f7bf247c8bdc9c7ac38 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/7a/da/439cc1e571b25c101f0729f5106358b0dea1e4c8e812c9376199858ecfd2/matplotlib-3.4.0rc1-cp38-cp38-win32.whl#sha256=696de41d717da6205a19a4010609cc049989e4c4fe2286c582d11c817fae12dd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/59/c8/7195c336e97e87f1959990c1afd321f05da210a9f6750d3abcb15a36ca89/matplotlib-3.4.0rc1-cp38-cp38-win_amd64.whl#sha256=4b2f49e0730f3f73b9878d375a4ef95e8060993ac2bd891feb3010de05fc5c0c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/da/ea/630a5b3259b61d0c765ac574ed2d87f32af0e432a14ff2f8ff1f42146918/matplotlib-3.4.0rc1-cp39-cp39-macosx_10_9_x86_64.whl#sha256=02d9ced7bdc3f130e6838c56c8f1c11d06b3099e36710b32f274c23fbeb3284b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/80/f1/7f8e37ac793fecae5295ef603bc9327f5243b419d2b7b4dc576c79ec4598/matplotlib-3.4.0rc1-cp39-cp39-manylinux1_i686.whl#sha256=e0a0ce7422fb5e78c433dfb2c6c9980d72f6db12c56e2c40bddb2fb4cc1b6515 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/9f/c8/6ef97b58ece9c5de42618b914ec0b39adc0ed30bab77419276a3088c4eea/matplotlib-3.4.0rc1-cp39-cp39-manylinux1_x86_64.whl#sha256=4517e6951fc2c732baba3e2f100be5a135b6c20a7b865958e19130a7a6a59bdb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/2a/8d/dc049dc2301f390c19c86a4d12dc843aa2abd6f9690cc0545685e610143c/matplotlib-3.4.0rc1-cp39-cp39-win32.whl#sha256=3d29bd1f95ef9589587effb6a9bc74c6c2b20847bb328028f29aeb3c4d5a42e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/f4/f9/192081ce1a91e2f0927070139b7ae0ccf1a060ecc858db9f58f61817002b/matplotlib-3.4.0rc1-cp39-cp39-win_amd64.whl#sha256=00d3e4a12ea95b14f52bf1300f475acea10d9c32080a0413283847f469f1c73d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/9c/e6/209705cb9e41d3a6f38b2782c5fdc55e335e7205eb0eca028485a6666427/matplotlib-3.4.0rc1.tar.gz#sha256=f4ee7bb15bf01cd4c6352f8343f4d27fd8ad36bb88640eb244525fe648005d19 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/cd/a0/38992a659867eddc89de6e8e01929d1f843ed73a7006c1687fccbe64c6e4/matplotlib-3.4.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=c569277a5f5249d2f238c83c446d52d23dabf5b641b5e3932055c413993945c1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/5c/78/e904eb8e945567121aeebb620f617ec59c55f9904e95a56ffc5b686e69ad/matplotlib-3.4.0rc2-cp37-cp37m-manylinux1_i686.whl#sha256=9ddf1ffdc7064f24ae99f8a7b408be705a1bfba8d8c20e56d1e677a83d321b4a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/eb/e1/b7331b4ab71b910b32768d090d9ac0a04bac59bb14297967fd3c2d71b5fb/matplotlib-3.4.0rc2-cp37-cp37m-manylinux1_x86_64.whl#sha256=8200f9810cecae25072b7275e79f4d80450a7c3236e99b204bb6dd8f4a137f02 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/ca/57/9e5e9de3aedea7ed6afafb097071a2977d13460d0a782f794b442abcae83/matplotlib-3.4.0rc2-cp37-cp37m-win32.whl#sha256=7853e8e74b477640b7db2b080228c4bce8587afadd4babe1fceb6f35b94ac94f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/f0/d1/69e154da5149400568d0d4f9b247652b3b1551543f1e8e371a33bf117746/matplotlib-3.4.0rc2-cp37-cp37m-win_amd64.whl#sha256=a95b398e7c92b35a1eb5ee5872a190ca50a6ecb6b18f4a8a82988187c9ed4b53 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/bb/71/3a0f54e5163d1649285225607dffa7041e71d871548549f86add852a76d7/matplotlib-3.4.0rc2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=92cd523ccb8c7560bfc05c3e739180fafe94f7274c04ce36565d2e2ca88e8121 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/24/10/7b56086c5907210f310103f7df34176840ac55fdb3903aa689b14435b7f1/matplotlib-3.4.0rc2-cp38-cp38-manylinux1_i686.whl#sha256=2599a73e3469ba5ffad9ad2b66b79eda05c90ed03a5b6e52f95e0bf97afcbaaa (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/42/a7/9eecb0d079d1e8e60a6ff00a79e2b715159e3135bc47699e78f7e1f28289/matplotlib-3.4.0rc2-cp38-cp38-manylinux1_x86_64.whl#sha256=070fe955df4e72c1cfef078835a28ce4df85b0e7425acd8ef5bba0b5baf39313 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/6d/fe/1ec3e87568f93ba77622af4071c45711756e794eba36c1717efbd0f9808a/matplotlib-3.4.0rc2-cp38-cp38-win32.whl#sha256=4a639058aaa97b26a8837f4bd9c81e78ec798754b0dcaeb93e07b1174d5ce6eb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/56/12/1ad6c2c4af42d50a86fede895f218084e7dd85fed93d7cc61cd1753beb83/matplotlib-3.4.0rc2-cp38-cp38-win_amd64.whl#sha256=24080e171b1aeb96dd5ac59188cd3d214ef48c8fb0d0d9faf3065f0841254da6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/6f/c2/c6634ee05b66b929b67ba9dba6f75146c43376afa9a966dd48f8e304830e/matplotlib-3.4.0rc2-cp39-cp39-macosx_10_9_x86_64.whl#sha256=4c7695fee2c44c774f8c01e53ba07aa353160ef0b46dd69408dc8a8a93915fb4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/39/bc/3587ed7fe77d60219aa72187c2a5426d33379c03740828b41a5ca801dde4/matplotlib-3.4.0rc2-cp39-cp39-manylinux1_i686.whl#sha256=360acd8cb82dd5be89752719a595c976fa5fd4d435d889afb526b1d707f5c65d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/55/8a/8927b1dea18913954fba0a9dd0c23cef73ec7122767ae1d7362c502814cb/matplotlib-3.4.0rc2-cp39-cp39-manylinux1_x86_64.whl#sha256=67a134120e0e8e98656cf2bb7f78974045bc6de38cb5e3115c0dd636bd16aceb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/a5/c4/1eca1f9943aa09b5cf27c373760aae3af53bf3daabbee839aa174c26e9cb/matplotlib-3.4.0rc2-cp39-cp39-win32.whl#sha256=bdf9fcf4a718c03f5d4bd9e94d9bf7a403ebcce54ac3024e4d15c800bdaaf7c2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/c8/9f/088570f37de79f228ac3f15ca5dae938acc92033ff1b51449beeb9941f02/matplotlib-3.4.0rc2-cp39-cp39-win_amd64.whl#sha256=ba42ba1d364bcd41d356fd2b9f2dab070d6ed8d26338efd0776eafaeaee31494 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/6c/75/a2546672729a27e3ef287c42835875c6ae2ff4730eca912aa0a035853267/matplotlib-3.4.0rc2.tar.gz#sha256=06afea42f06489a5c2bdf9b39ac00c8cf3730d3cce53f652dc3a35ac14cd8a6a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/41/8e/c0782be9cf9c1d0ec230a4f211a361e2908aa702d7ab0bc23e529d3d403b/matplotlib-3.4.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=f72de107cf2550db3c1068a8342bacb41b05596c359f130968159d5d23e6cb3b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/e1/51/23cf3013218ba5f680eb8d4fe8fdd3c3d91460ffe7cf33ec542dccd96548/matplotlib-3.4.0rc3-cp37-cp37m-manylinux1_i686.whl#sha256=2a6978b2bf2d53c1fba9d878018deef349c50845b54a0296c4dbe75a6aed15aa (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/fc/c9/c0809cea77893f712f710f2bb34855eb0e86ac134cd262f508d8908429ba/matplotlib-3.4.0rc3-cp37-cp37m-manylinux1_x86_64.whl#sha256=439f63626dfbc5c16cb19cd01ccb28dbb3c816f38b22f04dbf87ae00ad80e17f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/d4/ba/e1da987663c33a88e4a9f168ba7224edeecfd345f7d3b5f95803be575032/matplotlib-3.4.0rc3-cp37-cp37m-manylinux2014_aarch64.whl#sha256=008bf820cf32f85bfb733c79eeb302f54c7b0d5e1bc2812ac40051661632a4a1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/b6/92/16515763ffcea3e8ea86cbd6df3268b00bd8702c47bd91b01541a028e15c/matplotlib-3.4.0rc3-cp37-cp37m-win32.whl#sha256=281d61cb14c27104c74ee972ec86106596816849a903047bdcb2d99c13cfc90d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/c7/52/8919f9eb027a7dc5cb995899d7876bc3849c39194692f24cb1441fad42fe/matplotlib-3.4.0rc3-cp37-cp37m-win_amd64.whl#sha256=4b8d0914016767924bb5868a32e55b3f77b54b52359caa3e6b74a39789e79a1e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/83/4c/2f0dc025ab914dccdf822e0f124f8cd5c1075daae008e8538ca5ebd5f533/matplotlib-3.4.0rc3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=9da2799e1e18fc1be56ca8eb53342c442ef52662476be61058e3284485cc4b1e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/54/e1/5680f58d05212488207553f8c37e7ed0689855b4d796ef6b77c795e4fc7b/matplotlib-3.4.0rc3-cp38-cp38-manylinux1_i686.whl#sha256=14e7a9ac5556f90d3aea370d70b44a01d3297cf41abe954ee342d70cb763a581 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/96/a8/f8e6bc1f3ebe48b478b60b5f6fa5cf05f8e15f510c031f7e8957251ade1d/matplotlib-3.4.0rc3-cp38-cp38-manylinux1_x86_64.whl#sha256=18b2d2b7db3942e9577394c18d152b922595fa2460c5ba08d64269fba2404841 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/c9/7d/400a25d65f0f560d4412b0b1532b144415f2106e76f2044f4afb4a211c00/matplotlib-3.4.0rc3-cp38-cp38-manylinux2014_aarch64.whl#sha256=94af0abb59bd37726056216529bb415f6f629bc11954ae18f6616d8127c071ac (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/c4/99/83828083d198ac30f4bd2b4c8dc851cdf8d9065e532808f7f145bcf5124a/matplotlib-3.4.0rc3-cp38-cp38-win32.whl#sha256=6777987ae378c86639fde8d57b3c2913d0f360d976f908c030e7da135703c3fc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/ba/76/496e7272ced46d3d58db05c6fb4dfb2e4cc0c20356acbabff4de6d235e19/matplotlib-3.4.0rc3-cp38-cp38-win_amd64.whl#sha256=94fef10c448c700cb3292242c13a9dbf2aa7e2302a8f622a2b558d7e1949f905 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/f3/eb/3559c31ce01648689db671a8221bf2120373d511d378e00ce69e7856af46/matplotlib-3.4.0rc3-cp39-cp39-macosx_10_9_x86_64.whl#sha256=efeab589cea6f79ed03492bbc248b1ccd1f18d534f6b1560e926d0ce00e14e35 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/25/5c/178317eb376491a00ce9be327d84b586a78e2b5a049896c1ee2de1f21bfe/matplotlib-3.4.0rc3-cp39-cp39-manylinux1_i686.whl#sha256=3598d1a9fa070069231efb457ff3659fa0c30a0026b6b0a79037ebe6765e85b0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/b8/0a/d3f6073e538e87e8be0bca961141a24c9996f885be8cec305b33cd9dfc2a/matplotlib-3.4.0rc3-cp39-cp39-manylinux1_x86_64.whl#sha256=19ae6cd234cd9d2025eeeff9c25f178216334a577b9bec965f32ab92f28f96ad (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64: https://files.pythonhosted.org/packages/b0/43/ade6bfa234b0a2b65baf2bae346bfdcde9a81b9bc73dcad1269c4329234d/matplotlib-3.4.0rc3-cp39-cp39-manylinux2014_aarch64.whl#sha256=68616c6912dc1f89054180323d3f37dd0c0317beceb474484fdf63866c4d529e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/7f/80/b5c0d4c3e33bb97c97eb905df56bfa5d63aab7428094db6153af5e05e866/matplotlib-3.4.0rc3-cp39-cp39-win32.whl#sha256=cc4536454a82d84bda3a8ad08ad1864cbf45d0b09b169217bba8a79dc73568a6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/fb/ae/3763867a6cc2fc7402107f04d53a298b8d15ef45e0559e5c9650ae13ea55/matplotlib-3.4.0rc3-cp39-cp39-win_amd64.whl#sha256=84a853f46ce6db276a1d8b23058e97db7b934bd767840c74dd2a8f609d9ba5dc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/cb/30/984e51012b40e75bbc54cadac5592db6ec036c689cd7b3cd1aa665d00355/matplotlib-3.4.0rc3.tar.gz#sha256=116166d4ff675df68c2cf3e989b5b54d4639475d263badf4b4d4c9314d3a44c5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3b/2c/69a8b8edcd18c4b8a40274872c61809abedd3d8908b003c0fe58da63c434/matplotlib-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=fe4676d7f25d2915562aa551996843e97e7d25aefc54617a3b0fe74a967bc2c8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/12/30/e77a980afa538a3598b3155c695881dd755c8a88c2dbc5fc8de552b8bd0b/matplotlib-3.4.0-cp37-cp37m-manylinux1_i686.whl#sha256=e879b5915f0c8e765d0e1ae4ecf93fafbde4a1dee88409427ac0ca55d31a41a9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/83/ee/8d7e0149ecf95fae7e744c5a93f51a8c9f7a96c63691d10aed6d2c1d8735/matplotlib-3.4.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=8b046715f710b58dc89241eb3c8e907a30b269e915df6a134bb419f05a6507bf (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/76/02/e6e4062400e188fdb199b723fc96e0928f0651fe32371b3ea076fd86624a/matplotlib-3.4.0-cp37-cp37m-manylinux2014_aarch64.whl#sha256=7e76956b8dd4bd8a6be71e401e4a24d975e57d5849a80c24a35551040ff82df0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/3f/74/b65b12b6fe3fcdbf93e19f13ba5984cdd4bf8c4acf0e343c20aeb49ba23a/matplotlib-3.4.0-cp37-cp37m-win32.whl#sha256=3847ce29a01e1d1f0aa691263e510ce8504a20d158a811ed3a45c4c1d9e708e7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/3b/f8/edee615ebd1c076b55691ffd7bc1419eecb6db8c8a1dcbf4a8f1241cf1ec/matplotlib-3.4.0-cp37-cp37m-win_amd64.whl#sha256=3c617fc6f7d6ac0c6142e34f3066520273195c75fb5371eabfddb3da04a75174 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/7f/47/7ce23a198dfd23e24bf0ed3a30efa853afa2f8407553ee2e7e11f940e8d2/matplotlib-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=85388289b356f5f19464b84eaa7532cd10d3f701505ae8d988b3dfb1332d785f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/6b/ab/0a416f29bdeaad7f72f89dc3c86cdbbaa5903259b0634401ed0fa22f905d/matplotlib-3.4.0-cp38-cp38-manylinux1_i686.whl#sha256=7571d470cd5df2d6c27ee0e6dabbebd130eae91da19c3749c6946918f8bcad49 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/15/6d/13e0e8a75e0c8db048091ebc7c0630d4e36af3fc5ea9b33de23281dca544/matplotlib-3.4.0-cp38-cp38-manylinux1_x86_64.whl#sha256=2b54bbce73115f6f95912f57348b2e0fc03cc86a09c73191f1216d79c16cda3c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/fd/a0/f58294704441dbe23905c561c3ec29f3f1324230444cc7b7f26a057b3f39/matplotlib-3.4.0-cp38-cp38-manylinux2014_aarch64.whl#sha256=85d7b8da66bb71054f3d73210b4fe24cca8afc6f92f00569b2ad24ca32438034 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/12/c8/538499568e79e20b5190e7ad713a93609ceeb0bf5f970188d431cbf74b3f/matplotlib-3.4.0-cp38-cp38-win32.whl#sha256=a2828982c5329cceea67bae0af49e2bfae3471499d6d6aa4359efa0ef491b0f7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/6d/6f/8a3d1e91b7fa6f9f122b5155d14bd3c04a7e19008e7ce47133e242695405/matplotlib-3.4.0-cp38-cp38-win_amd64.whl#sha256=3bcee5685afb76d2a31f8a6b190caf2e52be250d214155b91830110416767de3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/14/17/8797d8bf7d4b059f2bdb006518d9433ddd1623af4f3302b84fc77326ffda/matplotlib-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl#sha256=a960ee5a139011e1d203df75eafc4e98013927f36ab69510313bc7d9d4641e38 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/ef/07/e7c349af9e2b8d5478b88d5960403f8e734117e7e119a4e471604be73aee/matplotlib-3.4.0-cp39-cp39-manylinux1_i686.whl#sha256=133469eb5d54a0a963d08a07356d03f6de41b6789f2a9d15aed0e6f3aabbf502 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/d6/a4/3004939737e2b1039a1ad0e60324a24742ec344c34ce7ee3a5c41a8e950c/matplotlib-3.4.0-cp39-cp39-manylinux1_x86_64.whl#sha256=36e2f68b7d2f22eacc4d9d4dfdf3a975c9db31fa6e36e16a2d60bf4c1ff5a35c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64: https://files.pythonhosted.org/packages/6d/42/dff06adf9c52e66156e1c8c451d27301baf00373c052893235f7fa7c024f/matplotlib-3.4.0-cp39-cp39-manylinux2014_aarch64.whl#sha256=966a1bb53ce56dcd542b4edb667166aac14c8eaf2a3acd68f403eccedf0d21a7 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/fe/11/7a1ccb4f64644f6aa797ef37f7e0dc3a4381e03ed768aa9e403575fc3e78/matplotlib-3.4.0-cp39-cp39-win32.whl#sha256=4002b0928bcd695eb7f23bf18c52e3cf23501a9c06a1de596079d74932aa4068 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/14/51/73c049ba40d07576fbfb867a9d89aeb640cc16d2b532448c7dd04c66d7c1/matplotlib-3.4.0-cp39-cp39-win_amd64.whl#sha256=fa0f7f3b2a0067ee5806264478f39fa52d7ddf8ee9b3012e5257b2ff39a15e0b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/05/3d/45415c62fe3f3e7f0dd0b06b8edb0ed2f3dd5f9ceedb7874642976cb3624/matplotlib-3.4.0.tar.gz#sha256=424ddb3422c65b284a38a97eb48f5cb64b66a44a773e0c71281a347f1738f146 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3c/a7/8d0b394272f2a25aa8ba4cadd396fb04e106dd277c3be621d5fadca41ced/matplotlib-3.4.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=7a54efd6fcad9cb3cd5ef2064b5a3eeb0b63c99f26c346bdcf66e7c98294d7cc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/b4/b5/55fb17c37a529a0a098b01acf0fbbde8034941a12687580d8ecfe862f091/matplotlib-3.4.1-cp37-cp37m-manylinux1_i686.whl#sha256=86dc94e44403fa0f2b1dd76c9794d66a34e821361962fe7c4e078746362e3b14 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ce/63/74c0b6184b6b169b121bb72458818ee60a7d7c436d7b1907bd5874188c55/matplotlib-3.4.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=574306171b84cd6854c83dc87bc353cacc0f60184149fb00c9ea871eca8c1ecb (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/12/ef/6d60c4f0252ae804d1abba9037219b000deb26010642e4d7c617544a8108/matplotlib-3.4.1-cp37-cp37m-manylinux2014_aarch64.whl#sha256=84a10e462120aa7d9eb6186b50917ed5a6286ee61157bfc17c5b47987d1a9068 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/3b/70/9f4b21cf30e644149dc9fc07cc4807f2318439a5966eb90a9d650291acdf/matplotlib-3.4.1-cp37-cp37m-win32.whl#sha256=81e6fe8b18ef5be67f40a1d4f07d5a4ed21d3878530193898449ddef7793952f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/56/3f/0a1b147f23830ca027f9e93cb4985957dbef690649f249063718c6e5c19b/matplotlib-3.4.1-cp37-cp37m-win_amd64.whl#sha256=c45e7bf89ea33a2adaef34774df4e692c7436a18a48bcb0e47a53e698a39fa39 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/74/87/946dd62179e1aed65c0f09bf09b4b91ab696970bd5a571fe7276b1d11c44/matplotlib-3.4.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=1f83a32e4b6045191f9d34e4dc68c0a17c870b57ef9cca518e516da591246e79 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/80/d5/1a25bcd0d7159a5ce837f9f4286757b14d21ab5d3e75c57a8d335f4663cf/matplotlib-3.4.1-cp38-cp38-manylinux1_i686.whl#sha256=a18cc1ab4a35b845cf33b7880c979f5c609fd26c2d6e74ddfacb73dcc60dd956 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/d4/2c/10224fd2eb8a27f415509d5e35e2945a47856c6128c6027a59a8ffa4016a/matplotlib-3.4.1-cp38-cp38-manylinux1_x86_64.whl#sha256=ac2a30a09984c2719f112a574b6543ccb82d020fd1b23b4d55bf4759ba8dd8f5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/57/9a/7e73fbc1fd629434ce1d4add0f71d9c4d409c723a64c6c6c3b94136494ba/matplotlib-3.4.1-cp38-cp38-manylinux2014_aarch64.whl#sha256=a97781453ac79409ddf455fccf344860719d95142f9c334f2a8f3fff049ffec3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/fc/5b/abb79c29446466e2cb774252b937652b3fa1dd06650bb11490342ec35dcd/matplotlib-3.4.1-cp38-cp38-win32.whl#sha256=2eee37340ca1b353e0a43a33da79d0cd4bcb087064a0c3c3d1329cdea8fbc6f3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/47/74/5151c95ec6bea42bcf8c61d59b494f6ffb5b34081297fcc16ffd4fb4aaa5/matplotlib-3.4.1-cp38-cp38-win_amd64.whl#sha256=90dbc007f6389bcfd9ef4fe5d4c78c8d2efe4e0ebefd48b4f221cdfed5672be2 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/14/0e/9106cfc8f9dde8a830cfda30ec6ec0e659aaf4c5277cb8b6480ade18245f/matplotlib-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl#sha256=7f16660edf9a8bcc0f766f51c9e1b9d2dc6ceff6bf636d2dbd8eb925d5832dfd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/79/75/45e96058baac93698c4723390781518efb7aa925d5897d2bb15c2da08bcc/matplotlib-3.4.1-cp39-cp39-manylinux1_i686.whl#sha256=a989022f89cda417f82dbf65e0a830832afd8af743d05d1414fb49549287ff04 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/26/c9/2c34c3a837a5835529460ed4050feb55d97c934b64f509e52ad16f679ebd/matplotlib-3.4.1-cp39-cp39-manylinux1_x86_64.whl#sha256=be4430b33b25e127fc4ea239cc386389de420be4d63e71d5359c20b562951ce1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64: https://files.pythonhosted.org/packages/03/8d/37a96543c87ba44f23c368fa6c4b505a33e2e36a4383195d18d3b299e652/matplotlib-3.4.1-cp39-cp39-manylinux2014_aarch64.whl#sha256=7561fd541477d41f3aa09457c434dd1f7604f3bd26d7858d52018f5dfe1c06d1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/52/91/fd37da06d6cd41b68430c64c3d85268094bcabd17ee4628b5064254ba23c/matplotlib-3.4.1-cp39-cp39-win32.whl#sha256=9f374961a3996c2d1b41ba3145462c3708a89759e604112073ed6c8bdf9f622f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/a1/cd/a6c15c681cbcaaede35eb06ca7ef513728b6c8a3a055e16f0b9aa09e6e49/matplotlib-3.4.1-cp39-cp39-win_amd64.whl#sha256=53ceb12ef44f8982b45adc7a0889a7e2df1d758e8b360f460e435abe8a8cd658 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/84/61/28711c7773a3a47c7f798cafc219968aab78d260c0d674696a077432bbd4/matplotlib-3.4.1.tar.gz#sha256=84d4c4f650f356678a5d658a43ca21a41fca13f9b8b00169c0b76e6a6a948908 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/0b/9b/5562739bb8856987e598b968a30e2e10f93af9a0cad62c93e190834d7e0d/matplotlib-3.4.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=c541ee5a3287efe066bbe358320853cf4916bc14c00c38f8f3d8d75275a405a9 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/1e/82/d29143f1279bd907aefe48f52d167ec30c18481b8a4c016e4501ef77a253/matplotlib-3.4.2-cp37-cp37m-manylinux1_i686.whl#sha256=3a5c18dbd2c7c366da26a4ad1462fe3e03a577b39e3b503bbcf482b9cdac093c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/24/33/5568d443ba438d95d4db635dd69958056f087e57e1026bee56f959d53f9d/matplotlib-3.4.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=a9d8cb5329df13e0cdaa14b3b43f47b5e593ec637f13f14db75bb16e46178b05 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/78/39/9ece983646368fb501f5804ea009d75f21e9b32bcb3d5d44559e1edd2b79/matplotlib-3.4.2-cp37-cp37m-manylinux2014_aarch64.whl#sha256=7ad19f3fb6145b9eb41c08e7cbb9f8e10b91291396bee21e9ce761bb78df63ec (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/b0/12/7a090e601d53119996709966267321f06ee365a923ee95f51d8a7882d3c8/matplotlib-3.4.2-cp37-cp37m-win32.whl#sha256=7a58f3d8fe8fac3be522c79d921c9b86e090a59637cb88e3bc51298d7a2c862a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/ec/f2/536de9d6eb75b053ea53944da62564499d5a3c786efe77f7075e35954782/matplotlib-3.4.2-cp37-cp37m-win_amd64.whl#sha256=6382bc6e2d7e481bcd977eb131c31dee96e0fb4f9177d15ec6fb976d3b9ace1a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/33/36/1f0ea9e0e095448d83a6f15a6ad9733554e7bf52e2476b0d52b9b9c0c822/matplotlib-3.4.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=6a6a44f27aabe720ec4fd485061e8a35784c2b9ffa6363ad546316dfc9cea04e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/da/95/22b11bd7dada336bee8766c24b5d31a26da6f5784e1c868cce32ca705b4b/matplotlib-3.4.2-cp38-cp38-manylinux1_i686.whl#sha256=1c1779f7ab7d8bdb7d4c605e6ffaa0614b3e80f1e3c8ccf7b9269a22dbc5986b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/1d/2b/9f02f1bcd69c521d8dc64049bd4ed29064f74ef508e6dd0089dc811a2a15/matplotlib-3.4.2-cp38-cp38-manylinux1_x86_64.whl#sha256=5826f56055b9b1c80fef82e326097e34dc4af8c7249226b7dd63095a686177d1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/fe/23/606bafaf7a105c7312e19a25ca56340a5c0d05563a7b63a5b26a3d1da0b4/matplotlib-3.4.2-cp38-cp38-manylinux2014_aarch64.whl#sha256=0bea5ec5c28d49020e5d7923c2725b837e60bc8be99d3164af410eb4b4c827da (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/e9/dd/67db8a527785d24bd7f17f959ade3c0ef3e6021b6104396f33ad3b955073/matplotlib-3.4.2-cp38-cp38-win32.whl#sha256=6475d0209024a77f869163ec3657c47fed35d9b6ed8bccba8aa0f0099fbbdaa8 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/c4/2c/5ee5ed65283710e6edadccdcad28e32c33d51f7501532beca674d704efc3/matplotlib-3.4.2-cp38-cp38-win_amd64.whl#sha256=21b31057bbc5e75b08e70a43cefc4c0b2c2f1b1a850f4a0f7af044eb4163086c (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/69/0e/e0a6b89396946f84f9bd7bcf270b260f5108e9f2659db9f03168047046ae/matplotlib-3.4.2-cp39-cp39-macosx_10_9_x86_64.whl#sha256=b26535b9de85326e6958cdef720ecd10bcf74a3f4371bf9a7e5b2e659c17e153 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/7b/32/e563afd07cfb49f79a2fcf0c7742c6136063fb2d88f966e92fb3a9749015/matplotlib-3.4.2-cp39-cp39-manylinux1_i686.whl#sha256=32fa638cc10886885d1ca3d409d4473d6a22f7ceecd11322150961a70fab66dd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/58/ef/50b17a043045c3fc62b20f2cab1973e21f7beb7d3897ab1fb026aea00fb2/matplotlib-3.4.2-cp39-cp39-manylinux1_x86_64.whl#sha256=956c8849b134b4a343598305a3ca1bdd3094f01f5efc8afccdebeffe6b315247 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64: https://files.pythonhosted.org/packages/36/25/e71e3803e45522ea1a97757701a8d4cf2356d28fcf182cd749aaba01840e/matplotlib-3.4.2-cp39-cp39-manylinux2014_aarch64.whl#sha256=85f191bb03cb1a7b04b5c2cca4792bef94df06ef473bc49e2818105671766fee (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/77/fb/08b92ac2f23a668c29eec771ffaca09d8d4ea34d0aecac25437898559fed/matplotlib-3.4.2-cp39-cp39-win32.whl#sha256=b1d5a2cedf5de05567c441b3a8c2651fbde56df08b82640e7f06c8cd91e201f6 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/85/17/5ccc9b36564d6d510c052f858929079a4aabc0eca6b793b263d4bc53e17e/matplotlib-3.4.2-cp39-cp39-win_amd64.whl#sha256=df815378a754a7edd4559f8c51fc7064f779a74013644a7f5ac7a0c31f875866 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/60/d3/286925802edaeb0b8834425ad97c9564ff679eb4208a184533969aa5fc29/matplotlib-3.4.2.tar.gz#sha256=d8d994cefdff9aaba45166eb3de4f5211adb4accac85cbf97137e98f26ea0219 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d5/d2/5c73af591cf3a2f823848510aea1228a610e6d34d27e2c9e6ed5570f5f40/matplotlib-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=5c988bb43414c7c2b0a31bd5187b4d27fd625c080371b463a6d422047df78913 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/f4/b6/c37ad3afe94c9697ba8d341aa36dcf074e568cd848e613ace7f91701d219/matplotlib-3.4.3-cp37-cp37m-manylinux1_i686.whl#sha256=f1c5efc278d996af8a251b2ce0b07bbeccb821f25c8c9846bdcb00ffc7f158aa (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/7c/ec/3d77b10ac3d30590f5431fd2dc59c58d20c020af107b47f8974896afc5c9/matplotlib-3.4.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=eeb1859efe7754b1460e1d4991bbd4a60a56f366bc422ef3a9c5ae05f0bc70b5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/23/a3/3406c0eefda3a925de479c147914b1c1c42a85941a3eb42246853455f7e9/matplotlib-3.4.3-cp37-cp37m-manylinux2014_aarch64.whl#sha256=844a7b0233e4ff7fba57e90b8799edaa40b9e31e300b8d5efc350937fa8b1bea (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/5a/67/003c861d29c5951c10838ae4323c2807534f4fec424601724afcddc7d782/matplotlib-3.4.3-cp37-cp37m-win32.whl#sha256=85f0c9cf724715e75243a7b3087cf4a3de056b55e05d4d76cc58d610d62894f3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/b8/e7/1ec3c8b52c4b66570fd46cb37a8b33b19c878a413f3f8726dd930291b858/matplotlib-3.4.3-cp37-cp37m-win_amd64.whl#sha256=c70b6311dda3e27672f1bf48851a0de816d1ca6aaf3d49365fbdd8e959b33d2b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/14/fe/30a42edcdaf7cb809782310c90817dbe7121fc32304b80a7776e3ba2dc53/matplotlib-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=b884715a59fec9ad3b6048ecf3860f3b2ce965e676ef52593d6fa29abcf7d330 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/bc/fe/0f10d673b74479d9990b7c485e786fdb6a12688d0ddcccda21c664a565ae/matplotlib-3.4.3-cp38-cp38-manylinux1_i686.whl#sha256=a78a3b51f29448c7f4d4575e561f6b0dbb8d01c13c2046ab6c5220eb25c06506 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/11/6b/9c6bb4c1e8380d16dfb78709e907a469bf0ddb12a55249a15c3f15717862/matplotlib-3.4.3-cp38-cp38-manylinux1_x86_64.whl#sha256=6a724e3a48a54b8b6e7c4ae38cd3d07084508fa47c410c8757e9db9791421838 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/85/1c/f131235a502fe08fe6ebc8f2e0661f39d61e013e340925cd187fb3662b5a/matplotlib-3.4.3-cp38-cp38-manylinux2014_aarch64.whl#sha256=48e1e0859b54d5f2e29bb78ca179fd59b971c6ceb29977fb52735bfd280eb0f5 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/fa/37/966df2fbe01fd29ae28863e6e9d06b60d29a419192db5664a013a98c5a61/matplotlib-3.4.3-cp38-cp38-win32.whl#sha256=01c9de93a2ca0d128c9064f23709362e7fefb34910c7c9e0b8ab0de8258d5eda (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/0f/84/2b2d869816512ddfef46a8c130782ca770009d920e295e3805bd6174014a/matplotlib-3.4.3-cp38-cp38-win_amd64.whl#sha256=ebfb01a65c3f5d53a8c2a8133fec2b5221281c053d944ae81ff5822a68266617 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/10/29/541b43a73a0f82517c481e0f1568423d88be6108956737f79e7ef97192fc/matplotlib-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl#sha256=b8b53f336a4688cfce615887505d7e41fd79b3594bf21dd300531a4f5b4f746a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/14/db/8a4554755c9d5452b33edc846d250f58ab5a16b0c38308559d66ab3a65d0/matplotlib-3.4.3-cp39-cp39-manylinux1_i686.whl#sha256=fcd6f1954943c0c192bfbebbac263f839d7055409f1173f80d8b11a224d236da (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/d0/c6/cca253a56088f330153276d71ffbfccabed9bd59d0c254e6b77aacf9d801/matplotlib-3.4.3-cp39-cp39-manylinux1_x86_64.whl#sha256=6be8df61b1626e1a142c57e065405e869e9429b4a6dab4a324757d0dc4d42235 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64: https://files.pythonhosted.org/packages/e8/78/28effe659ec8947f0745b2a94c2dbffbaa64e5f90f01c584a5598d609957/matplotlib-3.4.3-cp39-cp39-manylinux2014_aarch64.whl#sha256=41b6e307458988891fcdea2d8ecf84a8c92d53f84190aa32da65f9505546e684 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/3d/65/7dffec281f45fdd117833b94f239b8216475bdba1933fc3cba8f1f14237f/matplotlib-3.4.3-cp39-cp39-win32.whl#sha256=f72657f1596199dc1e4e7a10f52a4784ead8a711f4e5b59bea95bdb97cf0e4fd (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/59/ea/1c00d9278c51d5f03276ac3f08773a13d93cbf2d722386ae8da083866697/matplotlib-3.4.3-cp39-cp39-win_amd64.whl#sha256=f15edcb0629a0801738925fe27070480f446fcaa15de65946ff946ad99a59a40 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/69/e4/3d6c94da872ca23a4096f0dd6e72ea5aa3595c7ef1c8f8917fed32fbb98c/matplotlib-3.4.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl#sha256=556965514b259204637c360d213de28d43a1f4aed1eca15596ce83f768c5a56f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-manylinux2010_x86_64: https://files.pythonhosted.org/packages/7e/b2/d6236e1404b3196f68395645dd1bd1ffba35de151cfd6b948b1134404c09/matplotlib-3.4.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl#sha256=54a026055d5f8614f184e588f6e29064019a0aa8448450214c0b60926d62d919 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/21/37/197e68df384ff694f78d687a49ad39f96c67b8d75718bc61503e1676b617/matplotlib-3.4.3.tar.gz#sha256=fc4f526dfdb31c9bd6b8ca06bf9fab663ca12f3ec9cdf4496fb44bc680140318 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3c/05/17155198ed774103e30c77c721e9bec46a7602870fb5f77c6d739cdc9d23/matplotlib-3.5.0b1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=6aa0e48413c94bce7b596b8bc9ef40ffa48652efa57a94d7be1a12e2b14f1f9f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64: https://files.pythonhosted.org/packages/b3/ab/6e917da7e12c47bf21d50ae5f109d03bb32b0af63bcef6f9ef6899841632/matplotlib-3.5.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=cb34939d6eba9bb9487201484c1cd3fc62df2e3ffbb679ee0d34fe26eeb70c3e (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686, cp37-cp37m-manylinux_2_5_i686: https://files.pythonhosted.org/packages/f3/d5/ade3e203d2ab38ac8b9a37924224f23468dbdf1f6c9ca676c49962be14db/matplotlib-3.5.0b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl#sha256=1713cb9479ab4f89f1f5c4439a8c62545a816973208298b8fa63e4dae9d98d96 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64, cp37-cp37m-manylinux_2_5_x86_64: https://files.pythonhosted.org/packages/52/d9/251b3b4e0e4f59ae085d7c36e7f6f34fb5216a0d35c66e45af15ca66e35a/matplotlib-3.5.0b1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=f4f191911b10c800007f5e6a2cc13f997c56bc7ef2bfe346ba2c69bc1133db9f (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/fb/a4/af907f9ea8292757064d40fd694294f09e6111c04c0741e11bab4705e01c/matplotlib-3.5.0b1-cp37-cp37m-win32.whl#sha256=fa1bdb7222bd5086a8a0f0891753ad8234d10fafd7618505b1e27ce9da2fd626 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/eb/04/691605eae7b9a3b79d15a2de296b919ff691a61944bbbbd53f9ba7a4de27/matplotlib-3.5.0b1-cp37-cp37m-win_amd64.whl#sha256=0dbcf7bfc217bdbed52b5dbb01e36d2a7bec5f086c43b399e98f4d16e0faade0 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/03/3e/ff17fce43b0924b69426bb3afffef9a7ca683896cac57ed3e13601df37fe/matplotlib-3.5.0b1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=242790921056e85ba726a290f9abe99b105204e3fa669e3aac68702b65379d34 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64: https://files.pythonhosted.org/packages/b3/78/0254fd3b1ade96052f328f2a7b4279de9ef97cf2dff00bac15ba3c22c707/matplotlib-3.5.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=61c0c242efae2fc05dbaaa9910723af8f7886bab2366843076451baf08fc0210 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686, cp38-cp38-manylinux_2_5_i686: https://files.pythonhosted.org/packages/49/e9/98504136b16704611af07a928fb7bcd8265ffb2b0613eb2f06ea2bfa7b42/matplotlib-3.5.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl#sha256=226cfaed866898433926a63d178f28c98833de8d569cf26d353a0bd37bf26591 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64, cp38-cp38-manylinux_2_5_x86_64: https://files.pythonhosted.org/packages/06/dd/19863748328c3fa661e554c032fb5673473fd20ed9b975069fb3fd618c0e/matplotlib-3.5.0b1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=75c15c2d1b7cb5df44ce28f4a6a833e1f4b426c446153f1048e38ea914d2fba4 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/2c/f1/c3fabcf27bf7b08657fd7a8394050c3876455ef6e30411797f426605c0fc/matplotlib-3.5.0b1-cp38-cp38-win32.whl#sha256=a95c044ea1f8eacc6042b2b8a34afc94a00a8787ec0882d325fc010869a1a8c3 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/a9/35/df4e7ec76b24d6caaa593666eda93b85dd77c51d08a75e4076865e7f3ed2/matplotlib-3.5.0b1-cp38-cp38-win_amd64.whl#sha256=4843277c20901ec308873d88c9eadc29d3e27273423415401a9d01f314061dce (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/eb/c6/b28e823862b0087a434b651b0448283cd2525f0932caa96c041f11a8d813/matplotlib-3.5.0b1-cp39-cp39-macosx_10_9_x86_64.whl#sha256=4d0842758e7372f83e095c2e508dc25b23fe69cea69a5dbb46c9ae74be34ec1b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64: https://files.pythonhosted.org/packages/b1/72/b107e37ef85e9c6d0c580eab6911c2994c197af7f96ee207e2849d63d6e6/matplotlib-3.5.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=4e7d00edf18051013ae2a9eec6e0993c5b00cf26e6312c7a680f5c2efafe0ffe (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686, cp39-cp39-manylinux_2_5_i686: https://files.pythonhosted.org/packages/1d/ef/ff03cde2f82eacedc0b58e5a4089f8706e6590f022217c47b4607d470e75/matplotlib-3.5.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl#sha256=5d2d85b257869182b5ea8fb7e97b2bdbf16c4ccbf392a07b4694be5b3cd92c9b (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64, cp39-cp39-manylinux_2_5_x86_64: https://files.pythonhosted.org/packages/ff/b5/53642bf94af8442b7e3f1c99bf9a5c0ea0a472d30697e6586f2b36b59667/matplotlib-3.5.0b1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=88a25de66fd054f2298c1d35d9c328a0aec5e10cb7a0c2da7799b9c6b1c00d40 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/ae/37/0de1ce6e7db6efe4819acc09c8c742ad50d4ebf737d53772d480b4b83f4a/matplotlib-3.5.0b1-cp39-cp39-win32.whl#sha256=08d71d270b02a9853eccdcff9be773a9e1c14b98bce10e143bb9d1ad82552592 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/e2/52/e6a8fb4a366462286715d0ba621fa7b433230fe7bf9610a5a3657337cb5d/matplotlib-3.5.0b1-cp39-cp39-win_amd64.whl#sha256=2de478794875eed1a66f18025955316549aaf9e80b8bec07c99416827a845816 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/85/c6/b05589ff29ec169366274d04767a7364568a0b0a1f171f77162474755cb2/matplotlib-3.5.0b1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl#sha256=354f3c7c7bb75fb54f70e8d9da2da07d24b6c76a54674db9072ab4fa344c276d (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-manylinux2010_i686, pp37-pypy37_pp73-manylinux_2_12_i686: https://files.pythonhosted.org/packages/fb/7c/852f6a2c2ad008b526ae6d59b865e73c9aa37eedb853d5f8091b424bfdba/matplotlib-3.5.0b1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl#sha256=b7a37306b31178a702211859f67bb295643b2d055db881b49c7b7c266ae8b1ed (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Skipping link: none of the wheel's tags match: pp37-pypy37_pp73-manylinux2010_x86_64, pp37-pypy37_pp73-manylinux_2_12_x86_64: https://files.pythonhosted.org/packages/63/10/5e9c50daed43f40f84f121d20fe313da58d8900c93bd949854b5b047dc9e/matplotlib-3.5.0b1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl#sha256=80094e04785e94da3cc47ed88528785bf465b22c87927ec489430267df4433fc (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
  Link requires a different Python (3.6.12 not in: '>=3.7'): https://files.pythonhosted.org/packages/ce/e6/5646cf3bb58139790a27bae7e1aa2dece70ddab81b79f0a28f9513600e24/matplotlib-3.5.0b1.tar.gz#sha256=0bd2b4518acf4ea1bcd5675625d5a2dbae9163a39bbcdf8f23635a0795f8800a (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)
Given no hashes to check 47 links for project 'matplotlib': discarding no candidates
Using version 3.3.4 (newest of versions: 0.86, 0.86.1, 0.86.2, 0.91.0, 0.91.1, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0, 1.3.1, 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 2.0.0, 2.0.1, 2.0.2, 2.1.0, 2.1.1, 2.1.2, 2.2.0, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4)
Using cached wheel link: file:///usr/home/userman/.cache/pip/wheels/09/f4/84/841a4c463638ce3204dcb7137673efe82f22fba82544946b1f/matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl
Processing ./.cache/pip/wheels/09/f4/84/841a4c463638ce3204dcb7137673efe82f22fba82544946b1f/matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl
  Added matplotlib from file:///usr/home/userman/.cache/pip/wheels/09/f4/84/841a4c463638ce3204dcb7137673efe82f22fba82544946b1f/matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl to build tracker '/tmp/pip-req-tracker-a3_s3yu3'
  Removed matplotlib from file:///usr/home/userman/.cache/pip/wheels/09/f4/84/841a4c463638ce3204dcb7137673efe82f22fba82544946b1f/matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl from build tracker '/tmp/pip-req-tracker-a3_s3yu3'
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/site-packages (from matplotlib) (2.8.1)
Requirement already satisfied: cycler>=0.10 in ./.local/lib/python3.6/site-packages (from matplotlib) (0.10.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/site-packages (from matplotlib) (2.4.7)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/site-packages (from matplotlib) (7.0.0)
Requirement already satisfied: kiwisolver>=1.0.1 in ./.local/lib/python3.6/site-packages (from matplotlib) (1.3.1)
Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/site-packages (from matplotlib) (1.16.6)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/site-packages (from python-dateutil>=2.1->matplotlib) (1.15.0)
Installing collected packages: matplotlib

Successfully installed matplotlib-3.3.4
Removed build tracker: '/tmp/pip-req-tracker-a3_s3yu3'

@tacaswell tacaswell added this to the unassigned milestone Sep 28, 2021
@ManPython
Copy link
Author

ManPython commented Sep 28, 2021

Adding bether log
matplotlib_log.txt
Due problems to test other version of matplotlib have problem to define problem around OS or matplotlib freebsd-12.2-RELEASE-p2-amd64-3.6 or matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl or older verion.
#21214

@jklymak
Copy link
Member

jklymak commented Sep 28, 2021

Please post results of which pip and which python. Try 'python -m pip install matplotlib'. Those warning above really make it look like your pip is for python2

@jklymak jklymak added the status: needs clarification Issues that need more information to resolve. label Sep 29, 2021
@ManPython
Copy link
Author

ManPython commented Sep 29, 2021

pip --version
pip 21.2.4 from /lib/python3.7/site-packages/pip (python 3.7)

How is possible that pip is for python2 when python38?

Anyway I try.. and no effect, this same.

After install on python27 matplotlib-2.2.5.tar.gz for test, working. Also no relation with problems around ft2font.so?

GCC FreeBSD Clang 10.0.1 (git@github.com:llvm/llvm-project.git llvmorg-10.0.1- on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib
>>> matplotlib.__version__
'2.2.5'
>>> 

@QuLogic
Copy link
Member

QuLogic commented Sep 30, 2021

FreeBSD 12 ships with Python 3.8, so I'm not sure where you got 3.6 or 3.7 from. And pip install matplotlib compiles with builtin FreeType and loads fine. It also compiles and loads fine if you use system FreeType.

I don't know where you got this wheel from:

Using cached wheel link: file:///usr/home/userman/.cache/pip/wheels/09/f4/84/841a4c463638ce3204dcb7137673efe82f22fba82544946b1f/matplotlib-3.3.4-cp36-cp36m-freebsd_12_2_RELEASE_p2_amd64.whl

but you should delete all the matplotlib wheels you have and build again cleanly.

@ManPython
Copy link
Author

ManPython commented Oct 1, 2021

Well.. after delete cache etc. now this type line not exist.. but it was just cache..
In any cases problem still exist.
Here is new log.

matplotlib_log2.txt

@QuLogic
Copy link
Member

QuLogic commented Oct 1, 2021

You have gcc installed, and the FreeType configure finds that instead of clang which is being used by Python, and something gets broken with mixed compilers (probably LTO). You can work around that by exporting CC=clang CXX=clang++ before installing.

@QuLogic QuLogic added status: confirmed bug and removed status: needs clarification Issues that need more information to resolve. Community support Users in need of help. labels Oct 1, 2021
@QuLogic QuLogic modified the milestones: unassigned, v3.5.0 Oct 1, 2021
@QuLogic QuLogic closed this as completed in 203c5de Oct 4, 2021
@ManPython
Copy link
Author

ManPython commented Oct 6, 2021

@QuLogic I can confirm that working now. Some requiments for kiwisolver is needed only. Thx.

  Created wheel for matplotlib: filename=matplotlib-3.4.3-cp37-cp37m-freebsd_12_2_release_p2_amd64.whl size=7118158 sha256=fea09d1a49d0f308931d14f219fa346ee93b0d83ea7ccefa69f0dcda9cb21e3c
 
Successfully built matplotlib
Installing collected packages: matplotlib
Successfully installed matplotlib-3.4.3 
Python 3.7.9 (default, Oct 29 2020, 17:30:55) 
[Clang 10.0.1 (git@github.com:llvm/llvm-project.git llvmorg-10.0.1-0-gef32c611a on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/home/userman/venv/lib/python3.7/site-packages/matplotlib/__init__.py", line 157, in <module>
    _check_versions()
  File "/usr/home/userman/venv/lib/python3.7/site-packages/matplotlib/__init__.py", line 151, in _check_versions
    module = importlib.import_module(modname)
  File "/usr/home/userman/venv/lib/python3.7/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
ModuleNotFoundError: No module named 'kiwisolver'

pip uninstall kiwisolver
Found existing installation: kiwisolver 1.2.0
Uninstalling kiwisolver-1.2.0:
  Would remove:
    /usr/home/userman/venv/lib/python3.7/site-packages/kiwisolver-1.2.0.dist-info/*
    /usr/home/userman/venv/lib/python3.7/site-packages/kiwisolver.cpython-37m-x86_64-linux-gnu.so
Proceed (Y/n)? y
  Successfully uninstalled kiwisolver-1.2.0
(venvpython37) [userman@_ /usr/home/userman]$ kiwisolver^C
(venvpython37) [userman@_ /usr/home/userman]$ pip install kiwisolver
Collecting kiwisolver
  Downloading kiwisolver-1.3.2.tar.gz (54 kB)
     |████████████████████████████████| 54 kB 2.2 MB/s 
Building wheels for collected packages: kiwisolver
  Building wheel for kiwisolver (setup.py) ... done
  Created wheel for kiwisolver: filename=kiwisolver-1.3.2-cp37-cp37m-freebsd_12_2_release_p2_amd64.whl size=70499 sha256=dd829f384a6353a6e32a300de6cde4f5720bea33d7e8a28863ec88bbc3f9e2bb
  Stored in directory: /usr/home/userman/.cache/pip/wheels/32/aa/11/ 
Successfully built kiwisolver
Installing collected packages: kiwisolver
Successfully installed kiwisolver-1.3.2
(venvpython37) [userman@_ /usr/home/userman]$ python
Python 3.7.9 (default, Oct 29 2020, 17:30:55) 
[Clang 10.0.1 (git@github.com:llvm/llvm-project.git llvmorg-10.0.1-0-gef32c611a on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib
>>> matplotlib.__version__
'3.4.3'
>>> 

@tacaswell
Copy link
Member

tacaswell commented Oct 7, 2021

Thank you for reporting this @ManPython !

tacaswell pushed a commit to tacaswell/matplotlib that referenced this issue Oct 12, 2021
Otherwise, mixed compilers might break things when compiled together
into the extension.

Fixes matplotlib#21202
tacaswell pushed a commit that referenced this issue Oct 20, 2021
Otherwise, mixed compilers might break things when compiled together
into the extension.

Fixes #21202
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants