Skip to content

Commit 4808f52

Browse files
committed
TST: Adding whatsnews entry and adding issue number in test (pandas-dev#21295)
1 parent 162985b commit 4808f52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/source/whatsnew/v0.24.0.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Other Enhancements
4141
(:issue:`21627`)
4242
- New method :meth:`HDFStore.walk` will recursively walk the group hierarchy of an HDF5 file (:issue:`10932`)
4343
- :meth:`Series.nlargest`, :meth:`Series.nsmallest`, :meth:`DataFrame.nlargest`, and :meth:`DataFrame.nsmallest` now accept the value ``"all"`` for the ``keep` argument. This keeps all ties for the nth largest/smallest value (:issue:`16818`)
44+
- New method :meth:`__git_version__` will return git commit sha of current build
4445
-
4546

4647
.. _whatsnew_0240.api_breaking:

pandas/tests/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def test_compression_warning(compression_only):
265265
with f:
266266
df.to_csv(f, compression=compression_only)
267267

268-
268+
# GH 21295
269269
def test_git_version():
270270
git_version = pd.__git_version__
271271
assert len(git_version) == 40

0 commit comments

Comments
 (0)