From d9949ce1b181c85d82b3cc0ca4bcc6e140a614fe Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Sun, 25 Aug 2024 16:44:30 -0700 Subject: [PATCH] Include test support files in sdist Closes: https://github.com/django/daphne/issues/522 --- CHANGELOG.txt | 6 ++++++ MANIFEST.in | 1 + daphne/__init__.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5df13c7..437c517 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +4.1.3 (to be released) +------------------ + +* Removed unused pytest-runner +* Fixed sdist file to ensure it includes all tests + 4.1.2 (2024-04-11) ------------------ diff --git a/MANIFEST.in b/MANIFEST.in index 1aba38f..90b3902 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include LICENSE +recursive-include tests *.py \ No newline at end of file diff --git a/daphne/__init__.py b/daphne/__init__.py index 19ba8ff..2a21298 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.1.2" +__version__ = "4.1.3" # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with