diff roundup/backends/__init__.py @ 8081:95f91b6f0386

issue2551343 - Remove support for PySQLite and sqlite v2. It is unmaintained and sqlite3 is used which is the default for a Python distribution.
author John Rouillard <rouilj@ieee.org>
date Sat, 13 Jul 2024 18:52:55 -0400
parents 7f00fc5958ca
children d7cc63d7a857
line wrap: on
line diff
--- a/roundup/backends/__init__.py	Sat Jul 13 18:27:11 2024 -0400
+++ b/roundup/backends/__init__.py	Sat Jul 13 18:52:55 2024 -0400
@@ -28,7 +28,7 @@
 _modules = {
     'mysql': ('MySQLdb',),
     'postgresql': ('psycopg2',),
-    'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3', '_sqlite3', 'sqlite'),
+    'sqlite': ('sqlite3', '_sqlite3'),
 }
 
 def get_backend(name):

Roundup Issue Tracker: http://roundup-tracker.org/