Python and SQLite release cycles

M

mikhail.savitsky

Hi,

Official Python distro is very stable, with release cycle of around 1
year. However, to include the new version of SQLite, which has a much
shorter release cycle, one has to rebuild the main Python distribution
(to compile with the new SQLite headers) - this is from Python docs.
Therefore, inclusion of PySQLite in Python-2.5.1 distro effectively
shrinks the Python release cycle to that of SQLite. I would not have
minded, except that we have many workstations and pretty arcane
deployment procedure, making frequent redeployment of Python quite
painful.
Has anyone considered this problem and maybe a work-around?

Many thanks in advance,

Mikhail
 
D

Diez B. Roggisch

Hi,

Official Python distro is very stable, with release cycle of around 1
year. However, to include the new version of SQLite, which has a much
shorter release cycle, one has to rebuild the main Python distribution
(to compile with the new SQLite headers) - this is from Python docs.
Therefore, inclusion of PySQLite in Python-2.5.1 distro effectively
shrinks the Python release cycle to that of SQLite. I would not have
minded, except that we have many workstations and pretty arcane
deployment procedure, making frequent redeployment of Python quite
painful.
Has anyone considered this problem and maybe a work-around?

I think you misrepresent horse and rider here: python release cycles are
independent of SQLites. I'm pretty sure they might contain new versions if
these are API-compatible (remember, python's shipped SQLite won't be
allowed to break existing stuff).

In all cases, you can decouple them easily (the same way with element-tree):
just install sqlite explicitly as a module. It's under a different name
(not sure which right out of my head), so they don't conflict.

Diez
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,607
Members
45,240
Latest member
pashute

Latest Threads

Top