From 871e958c7f761472898e93ec7880917fa9d12661 Mon Sep 17 00:00:00 2001 From: Dhaval Gojiya Date: Wed, 29 Apr 2026 14:03:35 +0530 Subject: [PATCH] chore: remove "maintainers wanted" notices from README and package initialization module --- README.md | 21 --------------------- drf_haystack/__init__.py | 32 -------------------------------- 2 files changed, 53 deletions(-) diff --git a/README.md b/README.md index 78c9068..022997f 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,3 @@ -🚨 Maintainers wanted 🚨 -======================== - -**This project urgently needs new maintainers!** - -The current maintainers are no longer actively using `drf-haystack` and would -like to [hand over the project to other developers](https://github.com/rhblind/drf-haystack/issues/146) who are using the package. - -We will still do the bare minimum maintenance of keeping dependency references -up to date with new releases of related packages **until January 1st 2026**. - -If by that time no new maintainers have joined to take over the project, we -will archive the project and make the repository read-only, with a final -release with whatever versions the dependencies have at that time. - -This gives everyone more than a year to either consider joining as maintainers -or switch to other packages for handling their search in DRF. - -_The `drf-haystack` maintainers, November 2024_ - - Haystack for Django REST Framework ================================== diff --git a/drf_haystack/__init__.py b/drf_haystack/__init__.py index 55c42b3..56350e9 100644 --- a/drf_haystack/__init__.py +++ b/drf_haystack/__init__.py @@ -1,38 +1,6 @@ -import warnings - __title__ = "drf-haystack" __version__ = "1.9.1" __author__ = "Rolf Haavard Blindheim" __license__ = "MIT License" VERSION = __version__ - - -def show_sunset_warning(): - """Show a warning about potential future sunsetting.""" - message = ( - "\n" - "==============================================================================\n" - "The `drf-haystack` project urgently needs new maintainers!\n" - "\n" - "The current maintainers are no longer actively using drf-haystack and would\n" - "like to hand over the project to other developers who are using the package.\n" - "\n" - "We will still do the bare minimum maintenance of keeping dependency references\n" - "up to date with new releases of related packages until January 1st 2026.\n" - "\n" - "If by that time no new maintainers have joined to take over the project, we\n" - "will archive the project and make the repository read-only, with a final\n" - "release with whatever versions the dependencies have at that time.\n" - "\n" - "This gives everyone more than a year to either consider joining as maintainers\n" - "or switch to other packages for handling their search in DRF.\n" - "\n" - "Do you want to join as a maintainer? Have a look at:\n" - "\n" - "==============================================================================\n" - ) - warnings.warn(message, UserWarning, stacklevel=2) - - -show_sunset_warning()