From 2e807743ea8f36a362400f65bab5d0f848faeddd Mon Sep 17 00:00:00 2001 From: Andrew Moffat Date: Wed, 9 Aug 2023 18:22:31 -0700 Subject: [PATCH 1/3] Revert "cleanup includes" This reverts commit 89333ae48069a5b445b3535232195b2de6f4648f. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a8c9adaf..4a265c49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,9 +29,12 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] include = [ - "CHANGELOG.md", - "MIGRATION.md", - "LICENSE.txt", + { path = "CHANGELOG.md", format = "sdist" }, + { path = "MIGRATION.md", format = "sdist" }, + { path = "images", format = "sdist" }, + { path = "Makefile", format = "sdist" }, + { path = "tests", format = "sdist" }, + { path = "tox.ini", format = "sdist" }, ] [tool.poetry.dependencies] From 5a2964ca02d7079cf58d12f00c27da914307e13c Mon Sep 17 00:00:00 2001 From: Andrew Moffat Date: Wed, 9 Aug 2023 18:23:36 -0700 Subject: [PATCH 2/3] add license to sdist package --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4a265c49..c2554674 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,7 @@ include = [ { path = "Makefile", format = "sdist" }, { path = "tests", format = "sdist" }, { path = "tox.ini", format = "sdist" }, + { path = "LICENSE.txt", format = "sdist" }, ] [tool.poetry.dependencies] From 11ea5c852c108b1dc98bc415c6ae5a9419b5f67e Mon Sep 17 00:00:00 2001 From: Andrew Moffat Date: Wed, 9 Aug 2023 18:24:28 -0700 Subject: [PATCH 3/3] 2.0.6 and changelog --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 853c080e..003216ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.6 - 8/9/23 + +- Add back appropriate sdist files [comment](https://github.com/amoffat/sh/commit/89333ae48069a5b445b3535232195b2de6f4648f) + ## 2.0.5 - 8/7/23 - Allow nested `with` contexts [#690](https://github.com/amoffat/sh/issues/690) diff --git a/pyproject.toml b/pyproject.toml index c2554674..127134d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sh" -version = "2.0.5" +version = "2.0.6" description = "Python subprocess replacement" authors = ["Andrew Moffat "] readme = "README.rst"