We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c276214 commit 49dce07Copy full SHA for 49dce07
3 files changed
CHANGES.txt
@@ -2,6 +2,13 @@ Changelog
2
=========
3
4
5
+1.x (unreleased)
6
+----------------
7
+
8
+* Do not require ``setuptools`` to work around an issue with ``pip`` and
9
+ Python 3. (Issue #172)
10
11
12
1.4.4 (2013-02-24)
13
------------------
14
pep8.py
@@ -45,7 +45,7 @@
45
700 statements
46
900 syntax error
47
"""
48
-__version__ = '1.4.4'
+__version__ = '1.4.5a0'
49
50
import os
51
import sys
setup.py
@@ -33,7 +33,8 @@ def get_long_description():
33
include_package_data=True,
34
zip_safe=False,
35
install_requires=[
36
- 'setuptools',
+ # Broken with Python 3: https://github.com/pypa/pip/issues/650
37
+ # 'setuptools',
38
# -*- Extra requirements: -*-
39
],
40
entry_points={
0 commit comments