You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm gettting a Matplot depreciation warning when running the following (note I'm running this within a streamlit application, not sure if this may have an influence)
# Show calendar
dates = date_range("2020-01-01", "2020-12-31")
data = np.random.randint(0, 100, len(dates))
## Create a figure with a single axes
fig, ax = plt.subplots()
## Tell july to make a plot in a specific axes
july.month_plot(dates, data, month=2, date_label=True, ax=ax, colorbar=True)
I tried and verified that this branch by @thoellrich solves the issue, and allows using the latest version of matplotlib with july. For those with this issues,please check out the branch by thoellrich, and @e-hulten please merge the pull request :)
Hi all,
I'm gettting a Matplot depreciation warning when running the following (note I'm running this within a streamlit application, not sure if this may have an influence)
pip list gives the following
Any tips what the issue may be? Looking forward to your ideas, and thanks in advance!
The text was updated successfully, but these errors were encountered: