Revision: 296
http://svn.sourceforge.net/gnuplot-py/?rev=296&view=rev
Author: mhagger
Date: 2007-03-30 03:57:31 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Reinstate workaround for spelling error in old distutils versions, as
Gnuplot.py is still documented to work with versions of Python back to
2.2 (see Gnuplot.html).
Modified Paths:
--------------
trunk/setup.py
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2007-03-30 10:47:49 UTC (rev 295)
+++ trunk/setup.py 2007-03-30 10:57:31 UTC (rev 296)
@@ -29,8 +29,11 @@
author_email='mh...@al...',
url='http://gnuplot-py.sourceforge.net',
license='LGPL',
- # fixed as of python2.3
- # licence='LGPL', # Spelling error in distutils
+ # This line is a workaround for a spelling error in earlier
+ # versions of distutils. The error has been fixed as of
+ # python2.3, but we leave this line here for compatibility with
+ # older python versions.
+ licence='LGPL',
# Description of the package in the distribution
package_dir={'Gnuplot' : '.'},
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|