From 0e87eadd1384661848ed7b7f83f9325e1a463ba6 Mon Sep 17 00:00:00 2001 From: Braden Dubois Date: Tue, 16 Mar 2021 11:39:22 -0600 Subject: [PATCH 1/2] fix: remove debug / testing printout from setup.py --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 454ebec..6ef523a 100644 --- a/setup.py +++ b/setup.py @@ -10,9 +10,6 @@ # This should be set by the automated Github workflow VERSION = environ["SEMANTIC_VERSION"] -# TEST - Ensure version number is correctly set -print(VERSION) - setup( name="do-calculus", version=VERSION, From c0e8c025b688d73ac2ab1fa0777a8bf152502764 Mon Sep 17 00:00:00 2001 From: Braden Dubois Date: Tue, 16 Mar 2021 11:39:36 -0600 Subject: [PATCH 2/2] fix: woefully abuse MANIFEST.in (again) to package entire do subdir --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3ab79a8..4a3b9e4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include do/* +recursive-include do/ *