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
(3) |
2
|
3
|
4
(1) |
5
(8) |
6
(5) |
7
|
8
|
9
|
10
|
11
(1) |
12
|
13
(3) |
14
(1) |
15
(2) |
16
(2) |
17
(6) |
18
(1) |
19
(3) |
20
|
21
(1) |
22
|
23
(5) |
24
(4) |
25
|
26
(1) |
27
(1) |
28
(1) |
29
(3) |
30
(4) |
|
|
Revision: 7037 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7037&view=rev Author: cmoad Date: 2009年04月11日 02:24:37 +0000 (2009年4月11日) Log Message: ----------- added python 2.6 / tcltk 8.5 check Modified Paths: -------------- branches/v0_98_5_maint/setupext.py Modified: branches/v0_98_5_maint/setupext.py =================================================================== --- branches/v0_98_5_maint/setupext.py 2009年04月06日 19:05:57 UTC (rev 7036) +++ branches/v0_98_5_maint/setupext.py 2009年04月11日 02:24:37 UTC (rev 7037) @@ -958,11 +958,14 @@ message = None if sys.platform == 'win32': major, minor1, minor2, s, tmp = sys.version_info - if major == 2 and minor1 in [3, 4, 5]: - module.include_dirs.extend(['win32_static/include/tcl8.4']) + if major == 2 and minor1 == 6: + module.include_dirs.extend(['win32_static/include/tcl85']) + module.libraries.extend(['tk85', 'tcl85']) + elif major == 2 and minor1 in [3, 4, 5]: + module.include_dirs.extend(['win32_static/include/tcl84']) module.libraries.extend(['tk84', 'tcl84']) elif major == 2 and minor1 == 2: - module.include_dirs.extend(['win32_static/include/tcl8.3']) + module.include_dirs.extend(['win32_static/include/tcl83']) module.libraries.extend(['tk83', 'tcl83']) else: raise RuntimeError('No tk/win32 support for this python version yet') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.