-
Notifications
You must be signed in to change notification settings - Fork 0
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
Rename to statsframe #13
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Contributing | ||
|
||
Contributions to `pydatasummary` are welcome and encouraged! The goal of this | ||
Contributions to `statsframe` are welcome and encouraged! The goal of this | ||
project is to make summarizing data and statistical models in python easier and | ||
more intuitive. If you have an idea for a new feature, or a bug fix, please make | ||
a suggestion. Every contribution is appreciated and will be considered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ project: | |
type: website | ||
output-dir: . | ||
# website: | ||
# title: "pydatasummary" | ||
# title: "statsframe" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick (llm): The commented-out configuration in 'docs/_quarto.yml' still references the old project name. If these lines are to be used in the future, they should be updated to reflect the new project name 'statsframe'. |
||
# favicon: favicon.ico | ||
# twitter-card: true | ||
# navbar: | ||
|
@@ -27,12 +27,12 @@ project: | |
# - _sidebar.yml | ||
|
||
# quartodoc: | ||
# package: pydatasummary | ||
# package: statsframe | ||
# parser: google | ||
# sidebar: _sidebar.yml | ||
|
||
# sections: | ||
# - title: "Function reference" | ||
# desc: "What pydatasummary's functions do" | ||
# desc: "What statsframe's functions do" | ||
# contents: | ||
# - skim |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Define pydatasummary version | ||
# Define statsframe version | ||
from importlib_metadata import version as _v | ||
|
||
# __version__ = "0.0.1" | ||
__version__ = _v("pydatasummary") | ||
__version__ = _v("statsframe") | ||
|
||
del _v | ||
|
||
# Import pydatasummary objects | ||
# Import statsframe objects | ||
# from ._tbl_data import * # noqa: F401, F403, E402 | ||
# from ._databackend import * # noqa: F401, F403, E402 | ||
from .ds import * # noqa: F401, F403, E402 | ||
from .datasummary import * # noqa: F401, F403, E402 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (llm): The removal of the 'pytest-cov' dependency from the 'build' target in the Makefile could lead to a situation where tests are not run before building, potentially allowing bugs to slip into the build. If this change is intentional, consider documenting the rationale behind it to maintain clarity for future maintainers.