Skip to content

Commit

Permalink
0.7.1 (#101)
Browse files Browse the repository at this point in the history
* πŸ› Fix `settingwithcopywarning` in `tidyr.pivot_wider()`

* πŸ“Œ Pin deps for docs

* πŸ’š Don't upload coverage in RP

* πŸ”– 0.7.1
  • Loading branch information
pwwang authored Mar 28, 2022
1 parent 15b39be commit befe8b8
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
if: ${{ always() }}
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
if: matrix.python-version == 3.9 && matrix.pandas == 'pandas'
if: matrix.python-version == 3.9 && matrix.pandas == 'pandas' && github.event_name != 'pull_request'
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: cov.xml
Expand Down
2 changes: 1 addition & 1 deletion datar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
options(enable_pdtypes=True)

__all__ = ("f", "get_versions")
__version__ = "0.7.0"
__version__ = "0.7.1"


def get_versions(prnt: bool = True):
Expand Down
2 changes: 2 additions & 0 deletions datar/tidyr/pivot_wide.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ def pivot_wider(

# hold NAs in values_from columns, so that they won't be filled
# by values_fill
if values_from and ret is _data:
ret = _data.copy()
for col in values_from:
ret[col].fillna(NA_integer_, inplace=True)

Expand Down
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.7.1

- πŸ› Fix settingwithcopywarning in tidyr.pivot_wider()
- πŸ“Œ Pin deps for docs
- πŸ’š Don't upload coverage in PR
- πŸ“ Fix typos in docs (#99, #100) (Thanks to @pdwaggoner)


## 0.7.0

- ✨ Support `modin` as backend
Expand Down
9 changes: 6 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# use_directory_urls doesn't work for newer versions
mkdocs==1.1.2
mkdocs-material
pymdown-extensions
# AttributeError: module 'jinja2' has no attribute 'contextfilter'
# jinja2==3.1.0
jinja2==3.0.3
mkdocs-material==7.2.3
pymdown-extensions==8.2
mkapi-fix
mkdocs-jupyter
mkdocs-jupyter==0.17.3
ipykernel
ipython_genutils
# to compile readme.ipynb
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datar"
version = "0.7.0"
version = "0.7.1"
description = "Port of dplyr and other related R packages in python, using pipda."
authors = ["pwwang <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit befe8b8

Please sign in to comment.