Hi!
When yscale is set to log, the lowest value tick on the y-axis does not have as many minor ticks shown as the other major y-ticks. Why is that and how can I ensure that they do? For example, this code produces 7 minor ticks for 10^-4 and 8 minor ticks for 10^-3, by default.
fig, ax = plt.subplots()
x = np.linspace(0.1, 10, 100)
y = np.exp(-x)
ax.plot(x, y)
ax.set_yscale('log')
plt.show()

