-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* β Add optional deps to extras so they aren't installed by default * π 0.8.4 * π· Update CI * π¨ Giva better message when optional packages not installed
- Loading branch information
Showing
8 changed files
with
33 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "datar" | ||
version = "0.8.3" | ||
version = "0.8.4" | ||
description = "Port of dplyr and other related R packages in python, using pipda." | ||
authors = ["pwwang <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -28,6 +28,9 @@ modin = {version = "^0.10", optional = true} | |
[tool.poetry.extras] | ||
pdtypes = ["pdtypes"] | ||
modin = ["modin"] | ||
scipy = ["scipy"] | ||
wcwidth = ["wcwidth"] | ||
slugify = ["python-slugify"] | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7" | ||
|