From 23fd769c7ad57e8966d11decb58d31299bc15dba Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Tue, 2 Sep 2025 20:10:14 -0400 Subject: [PATCH 1/2] changed build script --- .github/workflows/publish.yml | 4 ++-- src/libcrawler/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b04cf5a..3727aa3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,8 +36,8 @@ jobs: - name: Build package run: | - # You can use 'python setup.py sdist bdist_wheel' or 'python -m build' - python -m build sdist + # You would normally do 'python -m build sdist' or 'python setup.py sdist bdist_wheel' + python build.py sdist - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/src/libcrawler/version.py b/src/libcrawler/version.py index a770be9..1a6d33d 100644 --- a/src/libcrawler/version.py +++ b/src/libcrawler/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('1', '0', '1') +__version_info__ = ('1', '0', '2') __version__ = '.'.join(__version_info__) From b0f3e0f5bc31c9422e2e810c3bb380f4b03884ca Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Tue, 2 Sep 2025 20:11:47 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f64f68..caa2622 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Documentation Crawler and Converter v1.0.0 +# Documentation Crawler and Converter v1.0.2 This tool crawls a documentation website and converts the pages into a single Markdown document. It intelligently removes common sections that appear across multiple pages to avoid duplication, including them once at the end of the document.