[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-09-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Feel free to re-open if i missed something :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-09-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- versions: -Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-09-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Given the status of the 3.9 branch and given that this does not add anything new or fixes any specific bug, I would recommend to not backport this -- ___ Python tracker

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-09-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 207c321f13cea3fee7f378057864e8c6453f5adf by Erlend Egeberg Aasland in branch 'master': bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) https://github.com/python/cpython/commit/207c321f13cea3fee7f378057864e8c6453f5adf --

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-07-20 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Ɓukasz, pinging you, since you are the release manager of 3.9. Without PR 20909, 3.9 will be released without explicitly requiring SQLite 3.7.3 (setup.py looks for SQLite >= 3.7.2), compiling python 3.9 against SQLite 3.7.2 will fail at build time

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-06-16 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +20091 pull_request: https://github.com/python/cpython/pull/20909 ___ Python tracker ___

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-05-29 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- versions: -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-05-28 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-05-23 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +19598 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20330 ___ Python tracker ___

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-05-23 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : Currently, we use sqlite3_create_function_v2() without wrapping it in any #ifdefs, so in practise the sqlite3 module will not build against sqlite3 pre 3.7.3. Despite this, we still wrap parts of the code in #ifdefs for versions 3.6.x and older.