diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e7242b4..9cd260c3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ Changelog ========= +10.2.2 +====== + +* [FIX] Include files required to run tests in sdist + 10.2.1 ====== diff --git a/hatch.toml b/hatch.toml index 1b472f10..f80f38fc 100644 --- a/hatch.toml +++ b/hatch.toml @@ -2,7 +2,18 @@ source = "vcs" [build.targets.sdist] -packages = ["testinfra"] +include = [ + "testinfra", + "test", + "ansible.cfg", + "tox.ini", + "images", + "mypy.ini", + "CONTRIBUTING.rst", + "doc", + "Makefile", + ".pre-commit-config.yaml", +] [build.targets.wheel] -packages = ["testinfra"] +only-include = ["testinfra"]