Skip to content

Commit

Permalink
0.12.0 (#178)
Browse files Browse the repository at this point in the history
* ⬆️ Drop support for python3.7

* ⬆️ Bump pipda to 0.12

* 🍱 Update storms data to 2020 (tidyverse/dplyr#5899)

* 🔖 0.12.0
  • Loading branch information
pwwang authored Apr 13, 2023
1 parent e1d844d commit 89fc243
Show file tree
Hide file tree
Showing 9 changed files with 174 additions and 233 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
if: ${{ always() }}
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
if: matrix.python-version == 3.9
if: matrix.python-version == 3.10
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: cov.xml
Expand All @@ -51,7 +51,7 @@ jobs:
if: github.event_name == 'release'
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python # Set Python version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# if: github.ref == 'refs/heads/master'
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python # Set Python version
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
# if: github.ref == 'refs/heads/master'
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
with:
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ pip install -U datar[pandas]
# More backends support will be added in the future
```

<!-- ## Maximum compatibility with R packages
|Package|Version|
|-|-|
|[dplyr][21]|1.0.8| -->

## Backends

|Repo|Badges|
Expand Down Expand Up @@ -140,3 +146,4 @@ iris >> pull(f.Sepal_Length) >> dist_plot()
[18]: https://img.shields.io/pypi/v/datar-numpy?style=flat-square
[19]: https://img.shields.io/pypi/v/datar-pandas?style=flat-square
[20]: https://img.shields.io/pypi/dm/datar?style=flat-square
[21]: https://github.com/tidyverse/dplyr
2 changes: 1 addition & 1 deletion datar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .core.defaults import f
from .core.options import options, get_option, options_context

__version__ = "0.11.2"
__version__ = "0.12.0"


def get_versions(prnt: bool = True) -> _Mapping[str, str]:
Expand Down
2 changes: 1 addition & 1 deletion datar/data/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
storms=Metadata(
descr="This data is a subset of the NOAA Atlantic hurricane database best track data",
ref="https://dplyr.tidyverse.org/reference/storms.html",
index=False,
index=True,
source=HERE / "storms.csv.gz",
),
table1=Metadata(
Expand Down
Binary file modified datar/data/storms.csv.gz
Binary file not shown.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.12.0

- 📝 Added import f to plotnine on README.md (#177)
- ⬆️ Drop support for python3.7
- ⬆️ Bump pipda to 0.12
- 🍱 Update storms data to 2020 (tidyverse/dplyr#5899)

## 0.11.2

- 📝 Add pypi downloads badge to README
Expand Down
367 changes: 147 additions & 220 deletions poetry.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datar"
version = "0.11.2"
version = "0.12.0"
description = "A Grammar of Data Manipulation in python"
authors = ["pwwang <[email protected]>"]
license = "MIT"
Expand All @@ -9,19 +9,19 @@ homepage = "https://github.com/pwwang/datar"
repository = "https://github.com/pwwang/datar"

[tool.poetry.dependencies]
python = "^3.7.1"
simplug = "^0.2.2"
pipda = "^0.11"
python = "^3.8"
simplug = "^0.3"
pipda = "^0.12"
python-simpleconf = {version = "^0.5", extras = ["toml"]}
datar-numpy = {version = "^0.1", optional = true}
datar-pandas = {version = "^0.2", optional = true}
datar-pandas = {version = "^0.3", optional = true}
# datar-polars = {version = "^0.0.0", optional = true}
# datar-pyarrow = {version = "^0.0.0", optional = true}

[tool.poetry.extras]
numpy = ["datar-numpy"]
pandas = ["datar-pandas"]
# modin = ["datar-pandas[modin]"]
# modin = ["datar-pandas"]
# polars = ["datar-polars"]
# pyarrow = ["datar-pyarrow"]

Expand Down

0 comments on commit 89fc243

Please sign in to comment.