Skip to content

Commit 49dce07

Browse files
committed
Do not require 'setuptools' to work around an issue with pip and Python 3; issue #172
1 parent c276214 commit 49dce07

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ Changelog
22
=========
33

44

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+
512
1.4.4 (2013-02-24)
613
------------------
714

pep8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
700 statements
4646
900 syntax error
4747
"""
48-
__version__ = '1.4.4'
48+
__version__ = '1.4.5a0'
4949

5050
import os
5151
import sys

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def get_long_description():
3333
include_package_data=True,
3434
zip_safe=False,
3535
install_requires=[
36-
'setuptools',
36+
# Broken with Python 3: https://github.com/pypa/pip/issues/650
37+
# 'setuptools',
3738
# -*- Extra requirements: -*-
3839
],
3940
entry_points={

0 commit comments

Comments
 (0)