Browse Source

Note new meld version.

Chris McDonough 18 years ago
parent
commit
d8d1c6f556
2 changed files with 10 additions and 6 deletions
  1. 9 5
      CHANGES.txt
  2. 1 1
      setup.py

+ 9 - 5
CHANGES.txt

@@ -43,11 +43,11 @@
     'splituser' from urllib2, and it didn't exist.
 
   - It's now possible to use 'setup.py install' and 'setup.py develop'
-    on systems which do not have a C compiler if you set the environment
-    variable "NO_MELD3_EXTENSION_MODULES=1" in the shell in which
-    you invoke these commands (a new version of meld3, 0.6.1 was released
-    which respects this envvar and does not try to compile its optional
-    C extensions when it's set).
+    on systems which do not have a C compiler if you set the
+    environment variable "NO_MELD3_EXTENSION_MODULES=1" in the shell
+    in which you invoke these commands (versions of meld3 > 0.6.1
+    respect this envvar and do not try to compile optional C
+    extensions when it's set).
 
   - The test suite would fail on Python versions <= 2.3.3 because
     the "assertTrue" and "assertFalse" methods of unittest.TestCase
@@ -59,6 +59,10 @@
   - Documentation files and the sample configuration file are put into
     the generated supervisor egg's 'doc' directory.
 
+  _ Using the web interface would cause fairly dramatic memory
+    leakage.  We now require a version of meld3 that does not leak
+    memory from its C extensions.
+
 3.0a1
 
   - Default config file comment documented 10 secs as default for

+ 1 - 1
setup.py

@@ -76,7 +76,7 @@ dist = setup(
     data_files=[ ('doc', ['sample.conf', 'README.txt', 'UPGRADING.txt',
                           'CHANGES.txt', 'TODO.txt', 'LICENSES.txt',
                           'COPYRIGHT.txt'])],
-    install_requires = ['medusa >= 0.5.4', 'meld3 >= 0.6.1',
+    install_requires = ['medusa >= 0.5.4', 'meld3 >= 0.6.2',
                         'elementtree >= 1.2.6'],
     include_package_data = True,
     zip_safe = False,