declare dependency on sqlite when on py2.4 #728

Closed
opened 2009-06-01 23:04:42 +00:00 by warner · 3 comments

Zooko and I agreed to add a metadata dependency on one of the sqlite bindings
(used by Tahoe's backupdb feature). This means:

  • code can assume that either the 'sqlite3' or the 'pysqlite2' package will
    be importable
  • (sqlite3 comes with py2.5/py2.6 . pysqlite2 is an add-on, useful for
    py2.4)
  • setuptools must be content with the sqlite3 that comes with py2.5/py2.6.
    If python -c "import sqlite3" works, it must not attempt to
    download+build pysqlite2 or sqlite3.
  • My concern here is that the batteries-included sqlite3 module typically
    does not include an .egg-info file, and so setuptools might not believe
    that it exists.
  • if this is a problem, then either we don't add the dependency, add it
    only when sys.version says 2.4, or try the import before adding the
    dependency.

Python2.4 users will have an extra dependency to deal with, which may or may
not be satisfiable automatically. In exchange for this, we can remove the
--no-backupdb option from "tahoe backup". I think we might want to retain the
"here's advice for getting pysqlite" message in the ImportError handler,
because we'll be removing the alternative (running without sqlite and without
a backupdb).

Zooko and I agreed to add a metadata dependency on one of the sqlite bindings (used by Tahoe's backupdb feature). This means: * code can assume that either the 'sqlite3' or the 'pysqlite2' package will be importable * (sqlite3 comes with py2.5/py2.6 . pysqlite2 is an add-on, useful for py2.4) * setuptools must be content with the sqlite3 that comes with py2.5/py2.6. If `python -c "import sqlite3"` works, it must *not* attempt to download+build pysqlite2 or sqlite3. * My concern here is that the batteries-included sqlite3 module typically does not include an .egg-info file, and so setuptools might not believe that it exists. * if this is a problem, then either we don't add the dependency, add it only when sys.version says 2.4, or try the import before adding the dependency. Python2.4 users will have an extra dependency to deal with, which may or may not be satisfiable automatically. In exchange for this, we can remove the --no-backupdb option from "tahoe backup". I think we might want to retain the "here's advice for getting pysqlite" message in the ImportError handler, because we'll be removing the alternative (running without sqlite and without a backupdb).
warner added the
packaging
minor
task
1.4.1
labels 2009-06-01 23:04:42 +00:00
warner added this to the undecided milestone 2009-06-01 23:04:42 +00:00

Fixed by changeset:81b0e1382d9dd391. Oh, I guess I shouldn't close this ticket til I remove the --no-backupdb option.

Fixed by changeset:81b0e1382d9dd391. Oh, I guess I shouldn't close this ticket til I remove the `--no-backupdb` option.

Fixed by changeset:8c18ac38a9b71d43.

Fixed by changeset:8c18ac38a9b71d43.
zooko added the
fixed
label 2009-06-04 19:37:27 +00:00
zooko closed this issue 2009-06-04 19:37:27 +00:00
Author

See #745 for a possible problem with this change.

See #745 for a possible problem with this change.
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#728
No description provided.