You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(10) |
2
(6) |
3
|
4
(10) |
5
(5) |
6
(5) |
7
(6) |
8
(2) |
9
(5) |
10
(7) |
11
(5) |
12
(8) |
13
(5) |
14
(7) |
15
(3) |
16
(1) |
17
(1) |
18
|
19
(1) |
20
(6) |
21
(6) |
22
(3) |
23
(3) |
24
(7) |
25
|
26
(5) |
27
(1) |
28
(3) |
29
(2) |
30
(3) |
|
|
|
Revision: 8477 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8477&view=rev Author: astraw Date: 2010年06月29日 21:44:19 +0000 (2010年6月29日) Log Message: ----------- docs: build with makefile produced by Sphinx Modified Paths: -------------- trunk/matplotlib/doc/make.py Modified: trunk/matplotlib/doc/make.py =================================================================== --- trunk/matplotlib/doc/make.py 2010年06月29日 13:30:09 UTC (rev 8476) +++ trunk/matplotlib/doc/make.py 2010年06月29日 21:44:19 UTC (rev 8477) @@ -52,12 +52,8 @@ # Produce pdf. os.chdir('build/latex') - # Copying the makefile produced by sphinx... - if (os.system('pdflatex Matplotlib.tex') or - os.system('pdflatex Matplotlib.tex') or - os.system('makeindex -s python.ist Matplotlib.idx') or - os.system('makeindex -s python.ist modMatplotlib.idx') or - os.system('pdflatex Matplotlib.tex')): + # Call the makefile produced by sphinx... + if os.system('make'): raise SystemExit("Rendering LaTeX failed.") os.chdir('../..') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8476 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8476&view=rev Author: jdh2358 Date: 2010年06月29日 13:30:09 +0000 (2010年6月29日) Log Message: ----------- bump version number for rc Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/__init__.py Modified: trunk/matplotlib/lib/matplotlib/__init__.py =================================================================== --- trunk/matplotlib/lib/matplotlib/__init__.py 2010年06月28日 14:05:17 UTC (rev 8475) +++ trunk/matplotlib/lib/matplotlib/__init__.py 2010年06月29日 13:30:09 UTC (rev 8476) @@ -99,7 +99,7 @@ """ from __future__ import generators -__version__ = '1.0.svn' +__version__ = '1.0rc1' __revision__ = '$Revision$' __date__ = '$Date$' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.