From 38e2ef985e8c0986f6bc2fa39d4e3bf266f0c5a2 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Tue, 28 Oct 2014 09:58:44 +1300 Subject: [PATCH] We now publish wheels of testtools. Change-Id: Icd49ec797e555b45ca69b23a0c94b5c94a2c3209 Closes-Bug: #issue84 --- Makefile | 4 ++-- NEWS | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ccaa776..c637123 100644 --- a/Makefile +++ b/Makefile @@ -21,11 +21,11 @@ prerelease: -rm MANIFEST release: - ./setup.py sdist upload --sign + ./setup.py sdist bdist_wheel upload --sign $(PYTHON) scripts/_lp_release.py snapshot: prerelease - ./setup.py sdist + ./setup.py sdist bdist_wheel ### Documentation ### diff --git a/NEWS b/NEWS index 640a952..647ceff 100644 --- a/NEWS +++ b/NEWS @@ -16,6 +16,8 @@ Changes * Make `testtools.content.text_content` error if anything other than text is given as content. (Thomi Richards) +* We now publish wheels of testtools. (Robert Collins, #issue84) + 1.1.0 ~~~~~