commit 95b7daddb9facda9b91af9dd785d16cdc171cc92 from: Jelmer Vernooij date: Sun Apr 14 13:05:30 2024 UTC Stop installing docs/ as part of package code Fixes #1248 commit - cc93029c25d975ee7e3fd1460948efeef631e1f1 commit + 95b7daddb9facda9b91af9dd785d16cdc171cc92 blob - 6e1c38f328ab7f0e78113eb783941cb595db46a0 blob + e176b7fb4fd671612a6ca2a605a89504cb412008 --- NEWS +++ NEWS @@ -1,4 +1,6 @@ 0.21.8 UNRELEASED + + * Stop installing docs/ as part of package code. (Jelmer Vernooij, #1248) * Move tests to root. (Jelmer Vernooij, #1024) blob - 7d1362aebed9018e2d63c3cc397a557d15d77ead blob + 822ed369538d1aacae5e1692fef44af334d93e87 --- setup.py +++ setup.py @@ -63,7 +63,7 @@ if "--pure" in sys.argv: setup( - package_data={"": ["../docs/tutorial/*.txt", "py.typed"]}, + package_data={"": ["py.typed"]}, rust_extensions=rust_extensions, tests_require=tests_require, )