Skip to content

Commit

Permalink
chore: bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
longxiaofei committed Aug 8, 2023
1 parent e4812b7 commit 8efc8e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ When you use pygwalker(>=0.2.0), we recommend using pygwalker by this way, more
```python
df = pd.read_csv('./bike_sharing_dc.csv', parse_dates=['date'])
walker = pyg.walk(df, spec="config.json", use_preview=True)

# when pygwalker >= 0.3.0, you can use duckdb as computing engine, it can support larger datas and faster response.
walker = pyg.walk(df, spec="config.json", use_preview=True, use_kernel_calc=True)
```

You can use pygwalker with polars (since `pygwalker>=0.1.4.7a0`):
Expand Down
2 changes: 1 addition & 1 deletion pygwalker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pygwalker.utils.randoms import rand_str as __rand_str
from pygwalker_utils.config import get_config as __get_config

__version__ = "0.3.0a1"
__version__ = "0.3.0"
__hash__ = __rand_str()

from pygwalker.api.walker import walk
Expand Down

0 comments on commit 8efc8e4

Please sign in to comment.