From 4810d2b6c8340804484996b6d7166cab7d3b4e99 Mon Sep 17 00:00:00 2001 From: Kobi Hikri Date: Wed, 15 Jul 2026 20:41:19 +0300 Subject: [PATCH] Drop EOL Python classifiers (2.6-3.6) and update README tested-versions claim --- README.rst | 2 +- setup.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 9d47ca11..bc0b3342 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ Summary of features * Small memory usage * Lets you share memory between multiple processes * Index creation is separate from lookup (in particular you can not add more items once the tree has been created) -* Native Python support, tested with 2.7, 3.6, and 3.7. +* Native Python support, tested with 3.7–3.13. * Build index on disk to enable indexing big datasets that won't fit into memory (contributed by `Rene Hollander `__) Python code example diff --git a/setup.py b/setup.py index aa5cbe31..1aac95a3 100644 --- a/setup.py +++ b/setup.py @@ -93,12 +93,6 @@ classifiers=[ 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',