Skip to content

Commit 0ed24eb

Browse files
authored
Merge pull request #13 from pharmaverse/main
Synchronize changes until v0.1.10
2 parents e52a633 + 4e507ac commit 0ed24eb

File tree

20 files changed

+535
-620
lines changed

20 files changed

+535
-620
lines changed

.github/workflows/docs.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
jobs:
14+
deploy:
15+
environment:
16+
name: github-pages
17+
url: ${{ steps.deployment.outputs.page_url }}
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/configure-pages@v5
21+
- uses: actions/checkout@v6
22+
- uses: actions/setup-python@v6
23+
with:
24+
python-version: 3.x
25+
- run: pip install zensical mkdocstrings-python
26+
- run: zensical build --clean
27+
- uses: actions/upload-pages-artifact@v4
28+
with:
29+
path: site
30+
- uses: actions/deploy-pages@v4
31+
id: deployment

.github/workflows/mkdocs.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ wheels/
1111

1212
# pytest
1313
.coverage
14+
15+
# Zensical site
16+
/site/

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.14.0
1+
3.14.2

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## py-pkglite 0.1.10
4+
5+
### Documentation
6+
7+
- Migrated documentation site to use Zensical (#58).
8+
9+
### Maintenance
10+
11+
- Added exclusion rules to the hatchling build configuration to reduce the
12+
file size of built source distributions and wheels (#59).
13+
314
## py-pkglite 0.1.9
415

516
### Documentation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
[![CI tests](https://github.com/pharmaverse/py-pkglite/actions/workflows/ci-tests.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/ci-tests.yml)
77
[![Mypy check](https://github.com/pharmaverse/py-pkglite/actions/workflows/mypy.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/mypy.yml)
88
[![Ruff check](https://github.com/pharmaverse/py-pkglite/actions/workflows/ruff-check.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/ruff-check.yml)
9-
[![mkdocs](https://github.com/pharmaverse/py-pkglite/actions/workflows/mkdocs.yml/badge.svg)](https://pharmaverse.github.io/py-pkglite/)
9+
[![Documentation](https://github.com/pharmaverse/py-pkglite/actions/workflows/docs.yml/badge.svg)](https://pharmaverse.github.io/py-pkglite/)
1010
![License](https://img.shields.io/pypi/l/pkglite)
1111

12-
A simple framework for packing source projects of any language into portable
13-
text files and restoring them into the original directory structure.
12+
A simple framework for packing source projects of any programming language into
13+
portable text files and restoring them into the original directory structure.
1414

1515
Besides the Python API, a command line interface is also provided.
1616

135 KB
Binary file not shown.
166 KB
Binary file not shown.

docs/changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## py-pkglite 0.1.10
4+
5+
### Documentation
6+
7+
- Migrated documentation site to use Zensical (#58).
8+
9+
### Maintenance
10+
11+
- Added exclusion rules to the hatchling build configuration to reduce the
12+
file size of built source distributions and wheels (#59).
13+
314
## py-pkglite 0.1.9
415

516
### Documentation

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
[![CI tests](https://github.com/pharmaverse/py-pkglite/actions/workflows/ci-tests.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/ci-tests.yml)
77
[![Mypy check](https://github.com/pharmaverse/py-pkglite/actions/workflows/mypy.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/mypy.yml)
88
[![Ruff check](https://github.com/pharmaverse/py-pkglite/actions/workflows/ruff-check.yml/badge.svg)](https://github.com/pharmaverse/py-pkglite/actions/workflows/ruff-check.yml)
9-
[![mkdocs](https://github.com/pharmaverse/py-pkglite/actions/workflows/mkdocs.yml/badge.svg)](https://pharmaverse.github.io/py-pkglite/)
9+
[![Documentation](https://github.com/pharmaverse/py-pkglite/actions/workflows/docs.yml/badge.svg)](https://pharmaverse.github.io/py-pkglite/)
1010
![License](https://img.shields.io/pypi/l/pkglite)
1111

12-
A simple framework for packing source projects of any language into portable
13-
text files and restoring them into the original directory structure.
12+
A simple framework for packing source projects of any programming language into
13+
portable text files and restoring them into the original directory structure.
1414

1515
Besides the Python API, a command line interface is also provided.
1616

0 commit comments

Comments
 (0)