pbr > 1.6 to avoid pip 8 distutils issue
"Detected a distutils installed project" issue is hitting for argparse for specs repo. In case of nova specs repo it comes from testtools. As a workaround, making pbr version > 1.0 so that venv having pip < 8 and works fine. pbr < 1.0 endup with pip 8 and fails. pbr < 1.0 has pip explicitly in requirement.txt and trigger to update the pip to 8. pbr > 1.0 does not have the requirement.txt thing and does not trigger pip updates for venv. This is issue with all specs repo having distutils installed projects because g-r requirement update does not sync the specs repo requirements. But that is another thing can be fixed if there is no reason of not updating specs requirements. Change-Id: I31a1353d161e5e5687332cd8300ba5dd4f992a67
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -1,5 +1,5 @@
oslosphinx
pbr>=0.6,<1.0
pbr>=1.6 # Apache-2.0
sphinx>=1.1.2,<1.2
testrepository>=0.0.18
testtools>=0.9.34
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.