-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
remove have_setuptools branching #18349
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #18349 +/- ##
==========================================
- Coverage 91.38% 91.36% -0.02%
==========================================
Files 164 164
Lines 49790 49790
==========================================
- Hits 45501 45492 -9
- Misses 4289 4298 +9
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #18349 +/- ##
==========================================
- Coverage 91.38% 91.36% -0.02%
==========================================
Files 164 164
Lines 49790 49790
==========================================
- Hits 45501 45492 -9
- Misses 4289 4298 +9
Continue to review full report at Codecov.
|
msg = "C-source file '%s' not found." % (cfile) +\ | ||
" Run 'setup.py cython' before sdist." | ||
msg = ("C-source file '{cfile}' not found. Run " | ||
"'setup.py cython' before sdist.".format(cfile=cfile)) |
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.
👍 - nice
I’m retroactively declaring this the first in a 4ish part sequence to transition to use cythonize. |
setup.py
Outdated
if not _have_setuptools: | ||
sys.exit("need setuptools/distribute for Py3k" | ||
"\n$ pip install distribute") | ||
setuptools_kwargs = {'test_suite': 'nose.collector', |
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.
why did you add nose.collector
?
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 would completely remove this
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.
why did you add nose.collector?
It was already there, just lower in the file.
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 know, but I don't think its needed. remove and let's see.
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.
we should have a test_requires, but that's separate. can you open an issue for that.
Closing in favor of #18448. |
thanks |
git diff upstream/master -u -- "*.py" | flake8 --diff