With the previous fastquant version, matplotlib would have an error of ImportError Cannot import name 'warnings' from 'matplotlib.dates when trying to plot.
This was fixed in the previous PR by changing matplotlib to 3.2.2. However, this was committed to be matplotlib==3.2.2 which may cause issues in pip installs.
This PR changes the matplotlib version to >= 3.2.2. If you get the error stated above, one fix would be to change the version to ==3.2.2.
Checklist
[x] I am making a pull request from a branch other than master
Description
With the previous fastquant version, matplotlib would have an error of
ImportError Cannot import name 'warnings' from 'matplotlib.dates
when trying to plot.This was fixed in the previous PR by changing matplotlib to 3.2.2. However, this was committed to be
matplotlib==3.2.2
which may cause issues in pip installs.This PR changes the matplotlib version to >= 3.2.2. If you get the error stated above, one fix would be to change the version to ==3.2.2.
Checklist