-
-
Notifications
You must be signed in to change notification settings - Fork 18.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
BLD: since we already use setuptools, let's remove the optional logic… #18448
Conversation
Codecov Report
@@ Coverage Diff @@
## master #18448 +/- ##
==========================================
- Coverage 91.35% 91.31% -0.05%
==========================================
Files 163 163
Lines 49691 49691
==========================================
- Hits 45397 45376 -21
- Misses 4294 4315 +21
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #18448 +/- ##
==========================================
- Coverage 91.46% 91.31% -0.16%
==========================================
Files 157 163 +6
Lines 51439 49691 -1748
==========================================
- Hits 47051 45376 -1675
+ Misses 4388 4315 -73
Continue to review full report at Codecov.
|
setup.py
Outdated
|
||
if _have_setuptools: | ||
setuptools_kwargs["test_suite"] = "nose.collector" | ||
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.
remove this, its no longer needed
setup.py
Outdated
@@ -56,10 +50,6 @@ def is_platform_mac(): | |||
'pytz >= 2011k', |
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 can be a bit simpler, e.g. use a common setuptool_kwargs, leaving out datetutil, then add this separately for PY2 and 3
doc/source/whatsnew/v0.22.0.txt
Outdated
@@ -195,5 +195,6 @@ Other | |||
^^^^^ | |||
|
|||
- Improved error message when attempting to use a Python keyword as an identifier in a numexpr query (:issue:`18221`) | |||
- BLD: since we already use setuptools, let's remove the optional logic in setup.py (:issue:`18113`) |
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 isn't the usual style of a what's new entry. Something like "Simplified setup due to explicit dependence on setuptools (:issue...)"
can you rebase and update |
… in setup.py (GH18113).
62254e5
to
21cbe79
Compare
Hello @gkonefal-reef! Thanks for updating the PR.
|
I've applied changes as it was requested. |
closes pandas-dev#18113 Author: Grzegorz Konefał <grzegorz.konefal@reef.pl> Author: Krzysztof Chomski <krzysztof.chomski@reef.pl> Closes pandas-dev#18448 from gkonefal-reef/GH18113 and squashes the following commits: 21cbe79 [Grzegorz Konefał] Comments applied 290b49c [Krzysztof Chomski] BLD: since we already use setuptools, let's remove the optional logic in setup.py (GH18113).
ok re-running on travis here just to make sure |
closes pandas-dev#18113 Author: Grzegorz Konefał <grzegorz.konefal@reef.pl> Author: Krzysztof Chomski <krzysztof.chomski@reef.pl> Closes pandas-dev#18448 from gkonefal-reef/GH18113 and squashes the following commits: 21cbe79 [Grzegorz Konefał] Comments applied 290b49c [Krzysztof Chomski] BLD: since we already use setuptools, let's remove the optional logic in setup.py (GH18113).
thanks @gkonefal-reef |
… in setup.py (GH18113).
git diff upstream/master -u -- "*.py" | flake8 --diff