Skip to content

Commit 6875d95

Browse files
authored
fix: Package data not included in wheel (#48)
* fix: Package data not included in wheel * Bump version to 0.8.1 * Add changelog entry for version 0.8.1
1 parent c035131 commit 6875d95

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog
33
=========
44

5+
0.8.1
6+
=====
7+
* fix: Package data was missing from wheel
8+
59
0.8.0
610
=====
711
* fix: Update github actions and readme by @fsbraun in https://github.com/django-cms/djangocms-rest/pull/12

djangocms_rest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.0"
1+
__version__ = "0.8.1"

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,16 @@ dev = [
5858
]
5959

6060
[project.urls]
61-
Homepage = "https://github.com/fsbraun/djangocms-rest"
62-
Repository = "https://github.com/fsbraun/djangocms-rest"
61+
Homepage = "https://github.com/django-cms/djangocms-rest"
62+
Repository = "https://github.com/django-cms/djangocms-rest"
63+
64+
65+
[tool.setuptools]
66+
include-package-data = true
6367

6468
[tool.setuptools.dynamic]
6569
version = {attr = "djangocms_rest.__version__"}
6670

6771
[tool.setuptools.packages.find]
72+
where = ["."]
6873
include = ["djangocms_rest*"]

0 commit comments

Comments
 (0)