From 0f15e4595b195a7d6c0cb4df58df69afd6b17045 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Thu, 11 Apr 2024 15:23:49 +0200 Subject: [PATCH] Fixed packaging configuration. (#510) Use auto-discovery, but make sure daphne package is correctly listed. --- CHANGELOG.txt | 5 +++++ daphne/__init__.py | 2 +- setup.cfg | 4 +--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 82521fe..5df13c7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +4.1.2 (2024-04-11) +------------------ + +* Fixed a setuptools configuration error in 4.1.1. + 4.1.1 (2024-04-10) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index ee354c7..19ba8ff 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.1.1" +__version__ = "4.1.2" # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with diff --git a/setup.cfg b/setup.cfg index cef2824..8e08789 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,10 +25,8 @@ classifiers = [options] package_dir = + daphne=daphne twisted=daphne/twisted -packages = - daphne - twisted.plugins include_package_data = True install_requires = asgiref>=3.5.2,<4