-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix on Python 3: pip install -e ".[dev]" #287
Conversation
Current coverage is 89.84%@@ trunk #287 diff @@
==========================================
Files 819 773 -46
Lines 143365 140763 -2602
Methods 0 0
Messages 0 0
Branches 13168 11995 -1173
==========================================
- Hits 129281 126471 -2810
+ Misses 11841 11749 -92
- Partials 2243 2543 +300
|
| scripts=getScripts(), | ||
| include_package_data=True, | ||
| zip_safe=False, | ||
| extras_require=_EXTRAS_REQUIRE, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is really minor, but this diff adds unnecessary churn here. Let's avoid re-ordering things that were already there (conditionalExtensions, zip_safe, and include_package_data), given that all we're doing is add extras_require.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the order to make the order the same as in setup.py.
Since setup3.py is using more and more stuff from dist.py, I made the change to make it easier to compare setup.py and setup3.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eh, fair enough. =)
See:
http://twistedmatrix.com/trac/ticket/7807