Skip to content
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

Add docs folder #720

Merged
merged 3 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ New features:
Bug fixes:

- Fix a few ``__all__`` variables.
- Added missing ``docs`` folder to distribution packages. See `Issue 712 <https://github.com/collective/icalendar/issues/712>`_.

6.0.0 (2024-09-28)
------------------
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ exclude = [
"/.*",
"/*.*",
"/src/icalendar/fuzzing",
"/docs",
"/dist",
"/build",
"/htmlcov",
Expand Down
8 changes: 7 additions & 1 deletion src/icalendar/tests/test_create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,16 @@ if ! [ -f "$archive" ]; then
exit 1
fi

if tar -tf "$archive" | grep 'fuzzing/'; then
if tar -tf "$archive" | grep -q 'fuzzing/'; then
echo "ERROR: Fuzzing files are included in the release."
echo " See https://github.com/collective/icalendar/pull/569"
exit 1
fi

if ! tar -tf "$archive" | grep -q '/docs/'; then
echo "ERROR: The documentation is not included in the release, but should be."
echo " See https://github.com/collective/icalendar/issues/712"
exit 1
fi

echo "Checks passed."
Loading