Skip to content

Commit

Permalink
Fix: include missing non-py in the distribution (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirus authored Aug 2, 2024
1 parent 1f6677f commit 596dd6b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.3.6] - 2024-08-02

- Small fix: include missing non-python files in the package.

## [0.3.5] - 2024-08-02

- Provide better for version-change directives (`versionadded`, `versionchanged`, `deprecated`, and `versionremoved`) when they only get a version number and no optional explanatory text.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
include README.md
include requirements.txt

recursive-include sphinx_nefertiti *.*
recursive-include sphinx_nefertiti/colorsets *.*
recursive-include sphinx_nefertiti/fonts **/*.*
recursive-include sphinx_nefertiti/static/ *.*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sphinx-nefertiti",
"version": "0.3.5",
"version": "0.3.6",
"private": true,
"description": "Nefertiti is a theme for the Sphinx Documentation Generator.",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="sphinx-nefertiti",
version="0.3.5",
version="0.3.6",
packages=find_packages(),
include_package_data=True,
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion sphinx_nefertiti/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_CURRENT_VERSION = (0, 3, 5, "f", 0) # following PEP 440
_CURRENT_VERSION = (0, 3, 6, "f", 0) # following PEP 440


def get_version():
Expand Down

0 comments on commit 596dd6b

Please sign in to comment.