Skip to content

Commit

Permalink
Merge pull request #720 from niccokunzmann/issue-712
Browse files Browse the repository at this point in the history
Add docs folder
  • Loading branch information
niccokunzmann authored Oct 13, 2024
2 parents 1907deb + f031742 commit f2c017d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
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."

0 comments on commit f2c017d

Please sign in to comment.