Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit c5eb1dc

Browse files
author
Matthew Fisher
committed
blacklist backports.lzma v0.0.4
backports.lzma recently bumped up to v0.0.4, adding namespace support to the package. However, they forgot to call declare_namespace() in their __init__.py. This causes pip install failures when running pip install file:///docker-registry#egg=docker-registry From inside the Dockerfile.
1 parent 2d50c1c commit c5eb1dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
if ver < (3, 0):
2323
# Python 2 requires lzma backport
24-
requirements.insert(0, 'backports.lzma>=0.0.2')
24+
requirements.insert(0, 'backports.lzma>=0.0.2,!=0.0.4')
2525
if ver < (2, 7):
2626
# Python 2.6 requires additional libraries
2727
requirements.insert(0, 'argparse>=1.2.1')

0 commit comments

Comments
 (0)