Skip to content

Commit 6da2269

Browse files
authored
Merge branch 'dev' into ci/testing-env
2 parents 5397c1b + c5ba7ef commit 6da2269

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.23.1
2+
current_version = 0.24.0
33
commit = True
44
tag = True
55

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [v0.24.0] - 2022-11-12
6+
57
- [ENH] Add lazy imports to speed up the time taken to load pyjanitor (part 2)
68
- [DOC] Updated developer guide docs.
79
- [ENH] Allow column selection/renaming within conditional_join. Issue #1102. Also allow first or last match. Issue #1020 @samukweku.
@@ -322,7 +324,9 @@ We thank all contributors
322324
who have helped make `pyjanitor`
323325
the package that it is today.
324326

325-
[Unreleased]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.23.1...HEAD
327+
[Unreleased]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.24.0...HEAD
328+
329+
[v0.24.0]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.23.1...v0.24.0
326330

327331
[v0.23.1]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.22.0...v0.23.1
328332

janitor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ def get_features_targets(*args, **kwargs):
2929
return _get_features_targets(*args, **kwargs)
3030

3131

32-
__version__ = "0.23.1"
32+
__version__ = "0.24.0"

janitor/functions/select.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def select_columns(
2626
2727
!!!note
2828
29-
The preferred option when selecting columns or rows in a Pandas DataFrame
30-
is with `.loc` or `.iloc` methods, as they are generally performant.
31-
`select_columns` is primarily for convenience.
29+
The preferred option when selecting columns or rows in a Pandas DataFrame
30+
is with `.loc` or `.iloc` methods, as they are generally performant.
31+
`select_columns` is primarily for convenience.
3232
3333
Example:
3434
@@ -86,9 +86,9 @@ def select_rows(
8686
8787
!!!note
8888
89-
The preferred option when selecting columns or rows in a Pandas DataFrame
90-
is with `.loc` or `.iloc` methods, as they are generally performant.
91-
`select_rows` is primarily for convenience.
89+
The preferred option when selecting columns or rows in a Pandas DataFrame
90+
is with `.loc` or `.iloc` methods, as they are generally performant.
91+
`select_rows` is primarily for convenience.
9292
9393
9494
Example:
@@ -144,9 +144,9 @@ def select(df: pd.DataFrame, *, rows=None, columns=None) -> pd.DataFrame:
144144
145145
!!!note
146146
147-
The preferred option when selecting columns or rows in a Pandas DataFrame
148-
is with `.loc` or `.iloc` methods, as they are generally performant.
149-
`select` is primarily for convenience.
147+
The preferred option when selecting columns or rows in a Pandas DataFrame
148+
is with `.loc` or `.iloc` methods, as they are generally performant.
149+
`select` is primarily for convenience.
150150
151151
152152
Example:

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def generate_long_description() -> str:
111111

112112
setup(
113113
name="pyjanitor",
114-
version="0.23.1",
114+
version="0.24.0",
115115
description="Tools for cleaning pandas DataFrames",
116116
author="pyjanitor devs",
117117
author_email="[email protected]",
@@ -123,5 +123,5 @@ def generate_long_description() -> str:
123123
extras_require=EXTRA_REQUIRES,
124124
python_requires=">=3.6",
125125
long_description=generate_long_description(),
126-
long_description_content_type="text/x-rst",
126+
long_description_content_type="text/markdown",
127127
)

0 commit comments

Comments
 (0)