-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
#34640: CLN: remove 'private_key' and 'verbose' from gbq #34654
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
since those two kwargs weren't removed along with #30200 , also cc @jbrockmendel , just in case this was made on purpose by him. |
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.
can you add a note in other api changes section for 1.1 that these keywords were removed, also please merge master and ping on green.
doc/source/whatsnew/v1.1.0.rst
Outdated
@@ -379,7 +379,7 @@ Other API changes | |||
- ``loc`` lookups with an object-dtype :class:`Index` and an integer key will now raise ``KeyError`` instead of ``TypeError`` when key is missing (:issue:`31905`) | |||
- Using a :func:`pandas.api.indexers.BaseIndexer` with ``count``, ``min``, ``max``, ``median``, ``skew``, ``cov``, ``corr`` will now return correct results for any monotonic :func:`pandas.api.indexers.BaseIndexer` descendant (:issue:`32865`) | |||
- Added a :func:`pandas.api.indexers.FixedForwardWindowIndexer` class to support forward-looking windows during ``rolling`` operations. | |||
- | |||
- Removed ``private_key`` and ``verbose`` from gbq (:issue:`34654`) |
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.
can you co-locate this with the other issue where we removed a keyword from gbq; also pls use the references to read_gbq (see the other issue)
hi, you need to rebase and resolve the conflicts in the two files listed below, otherwise, your commit won't get through and make CI run. |
@parkdj1 - Thanks for the PR, can you address the test failures and fix up the commits seems to be a few unrelated changes. |
@parkdj1 is this still active? Ref my comments above: #34654 (comment) Also whatsnew will be 1.2 now. Thanks |
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.
since needs to resolve conflict, a minor comment ^^
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.
minor comments, pls merge master and ping on green. I don't think we have any remaining tests for these right?
thanks @parkdj1 |
private_key
andverbose
from gbq #34640black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Hello, I am new to contributing to open source, so thank you in advance for any corrections and suggestions. Please let me know if I need to do anything else for this ticket!
I removed the code containing both 'private_key' and 'verbose' from the gbq.py file.