Browse Source

Remove setuptools from requirements list. Fixes #283

Mike Naberezny 11 năm trước cách đây
mục cha
commit
4cd438b4f0
2 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 3 0
      CHANGES.txt
  2. 1 1
      setup.py

+ 3 - 0
CHANGES.txt

@@ -15,6 +15,9 @@
   same time.  Specifying a log filename of ``syslog`` is still supported
   but deprecated.  Patch by Jason R. Coombs.
 
+- Removed ``setuptools`` from the ``requires`` list in ``setup.py`` because
+  it caused installation issues on some systems.
+
 3.0 (2013-07-30)
 ----------------
 

+ 1 - 1
setup.py

@@ -22,7 +22,7 @@ if sys.version_info[:2] < (2, 4) or sys.version_info[0] > 2:
     sys.stderr.write(msg)
     sys.exit(1)
 
-requires = ['setuptools', 'meld3 >= 0.6.5']
+requires = ['meld3 >= 0.6.5']
 
 if sys.version_info[:2] < (2, 5):
     # for meld3 (it's a distutils package)