Skip to content

[ENH] fix bug pivot_longer #828

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

Merged
merged 18 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## [Unreleased]
- drop `fill_value` parameter from `complete`. Users can use `fillna` instead. @samukweku

- [ENH] Drop `fill_value` parameter from `complete`. Users can use `fillna` instead. @samukweku
- [BUG] Fix bug in `pivot_longer` with single level columns. @samukweku
- [BUG] Disable exchange rates API until we can find another one to hit. @ericmjl

## [v0.20.14] - 2021-03-25

Expand Down
12 changes: 10 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# -- Path setup --------------------------------------------------------------

import datetime

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down Expand Up @@ -45,7 +46,7 @@
now = datetime.datetime.now()
CurrentYear = str(now.year)
copyright = CurrentYear + ", PyJanitor devs"
author = "Eric J. Ma"
author = "pyjanitor devs"

# The short X.Y version
version = "0.1.0"
Expand Down Expand Up @@ -97,7 +98,13 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"]
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
"**.ipynb_checkpoints",
"inflating_converting_currency*", # not working on PR #828.
]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"
Expand Down Expand Up @@ -215,3 +222,4 @@
# -- Other options -----------------------------------------------------------

autosummary_generate = True # Make _autosummary files and include them
nbsphinx_execute = "never"
263 changes: 108 additions & 155 deletions examples/notebooks/inflating_converting_currency.ipynb

Large diffs are not rendered by default.

Loading