Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ed40c commit a918688Copy full SHA for a918688
2 files changed
lib/matplotlib/dates.py
@@ -1227,7 +1227,7 @@ def __init__(self, tz=None, minticks=5, maxticks=None,
1227
YEARLY: [1, 2, 4, 5, 10, 20, 40, 50, 100, 200, 400, 500,
1228
1000, 2000, 4000, 5000, 10000],
1229
MONTHLY: [1, 2, 3, 4, 6],
1230
- DAILY: [1, 2, 3, 7, 14, 21],
+ DAILY: [1, 2, 4, 7, 14, 21],
1231
HOURLY: [1, 2, 3, 4, 6, 12],
1232
MINUTELY: [1, 5, 10, 15, 30],
1233
SECONDLY: [1, 5, 10, 15, 30],
@@ -1338,12 +1338,8 @@ def get_locator(self, dmin, dmax):
1338
self._freq = freq
1339
1340
if self._byranges[i] and self.interval_multiples:
1341
- if i == 2:
1342
- # special cases for monthday:
1343
- if interval == 14:
+ if i == 2 and interval == 14:
1344
byranges[i] = [1, 15]
1345
- if interval == 3:
1346
- byranges[i] = range(1, 29, 3)
1347
else:
1348
byranges[i] = self._byranges[i][::interval]
1349
interval = 1
setup.cfg.template
@@ -13,12 +13,12 @@
13
# set this to True. It will download and build a specific version of
14
# FreeType, and then use that to build the ft2font extension. This
15
# ensures that test images are exactly reproducible.
16
-#local_freetype = False
+local_freetype = True
17
18
[status]
19
# To suppress display of the dependencies and their versions
20
# at the top of the build log, uncomment the following line:
21
-#suppress = True
+#suppress = True
22
23
[packages]
24
# There are a number of subpackages of Matplotlib that are considered
0 commit comments