-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#173 Merge pull request from astropenguin/astropenguin/issue172
Release v1.0.0
- Loading branch information
Showing
16 changed files
with
1,430 additions
and
1,624 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Docs | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
jobs: | ||
job: | ||
name: Docs | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/astral-sh/uv:python3.12-bookworm | ||
env: | ||
UV_PROJECT_ENVIRONMENT: /usr/local | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: echo "::set-output name=tag::${GITHUB_REF##*/}" | ||
id: tag | ||
- run: uv sync --frozen | ||
- run: docs/build | ||
- uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
destination_dir: ${{ steps.tag.outputs.tag }} | ||
force_orphan: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/_build |
This file was deleted.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,30 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
# This CITATION.cff file was generated with cffinit. | ||
# Visit https://bit.ly/cffinit to generate yours today! | ||
|
||
title: "pandas-dataclasses" | ||
abstract: "pandas data creation made easy by dataclass" | ||
version: 0.13.0 | ||
date-released: 2024-12-09 | ||
license: "MIT" | ||
doi: "10.5281/zenodo.6127352" | ||
url: "https://github.com/astropenguin/pandas-dataclasses" | ||
cff-version: 1.2.0 | ||
title: pandas-dataclasses | ||
message: >- | ||
If you use this software, please cite it using the | ||
metadata from this file. | ||
type: software | ||
authors: | ||
- given-names: "Akio" | ||
family-names: "Taniguchi" | ||
affiliation: "Nagoya University" | ||
orcid: "https://orcid.org/0000-0002-9695-6183" | ||
- given-names: Akio | ||
family-names: Taniguchi | ||
email: taniguchi.akio@gmail.com | ||
affiliation: Kitami Institute of Technology | ||
orcid: 'https://orcid.org/0000-0002-9695-6183' | ||
identifiers: | ||
- type: doi | ||
value: 10.5281/zenodo.10652375 | ||
repository-code: 'https://github.com/astropenguin/pandas-dataclasses' | ||
url: 'https://astropenguin.github.io/pandas-dataclasses/v1.0.0' | ||
abstract: pandas data creation by data classes | ||
keywords: | ||
- python | ||
- dataclasses | ||
- pandas | ||
- specifications | ||
- typing | ||
license: MIT | ||
version: 1.0.0 | ||
date-released: '2025-01-01' |
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 was deleted.
Oops, something went wrong.
This file was deleted.
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,4 +1,4 @@ | ||
#!/bin/bash -eu | ||
|
||
sphinx-apidoc -efT -o docs/_apidoc pandas_dataclasses | ||
sphinx-apidoc -efMT -d 2 -o docs/_apidoc pandas_dataclasses | ||
sphinx-build -a docs docs/_build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
"core", | ||
"extras", | ||
] | ||
__version__ = "0.13.0" | ||
__version__ = "1.0.0" | ||
|
||
|
||
# submodules | ||
|
Oops, something went wrong.