Re: Changing the python sqlite3 version to the latest

2023-02-16 Thread Marco Atzeri via Cygwin
On 16.02.2023 15:25, Jose Isaias Cabrera via Cygwin wrote: On February 16, 2023 1:15 AM, Andrey Repin expressed: Don't forget to rebase the resulting binary(-es). How do I do that? rebase -s /path/to/binary ... The -n switch may be necessary as well. jcabrera@JIC ~ $ rebase -s -n

RE: Changing the python sqlite3 version to the latest

2023-02-16 Thread Jose Isaias Cabrera via Cygwin
On February 16, 2023 1:15 AM, Andrey Repin expressed: > >> Don't forget to rebase the resulting binary(-es). > > > How do I do that? > > rebase -s /path/to/binary ... > > The -n switch may be necessary as well. jcabrera@JIC ~ $ rebase -s -n /usr/bin/sqlite3.exe Nothing different,

Re: Changing the python sqlite3 version to the latest

2023-02-15 Thread Andrey Repin via Cygwin
Greetings, Jose Isaias Cabrera! > On Wednesday, February 15, 2023 10:55 AM, Andrey Repin  expressed: >> > -- untared the snapshot >> > $ tar xvf sqlite-snapshot-202302131932.tar.gz >> >> > -- cd to the untared directory >> > $ cd sqlite-snapshot-202302131932 >> >> > $ ./configure --prefix=/usr

Re: Changing the python sqlite3 version to the latest

2023-02-15 Thread Jose Isaias Cabrera via Cygwin
On Wednesday, February 15, 2023 10:55 AM, Andrey Repin  expressed: > > -- untared the snapshot > > $ tar xvf sqlite-snapshot-202302131932.tar.gz > > > -- cd to the untared directory > > $ cd sqlite-snapshot-202302131932 > > > $ ./configure --prefix=/usr > > > $ make install > > Don't forget

Re: Changing the python sqlite3 version to the latest

2023-02-15 Thread Andrey Repin via Cygwin
Greetings, Jose Isaias Cabrera! > In case anyone needs the answer, These steps worked for me: > -- Downloaded the Pre-release Snapshots > $ wget https://sqlite.org/snapshot/sqlite-snapshot-202302131932.tar.gz > -- untared the snapshot > $ tar xvf sqlite-snapshot-202302131932.tar.gz > -- cd to

RE: Changing the python sqlite3 version to the latest

2023-02-15 Thread Jose Isaias Cabrera via Cygwin
On February 14, 2023 8:46 PM, Jose Isaias Cabrera expressed: > > > On Tuesday, February 14, 2023 5:58 PM, Marco Atzeri expressed: > > > > On 11.02.2023 22:37, Jose Isaias Cabrera via Cygwin wrote: > > > > > > Greetings. > > > > > > If I install python39 and thus, > > > $ python > > > Python

RE: Changing the python sqlite3 version to the latest

2023-02-14 Thread Jose Isaias Cabrera via Cygwin
On Tuesday, February 14, 2023 5:58 PM, Marco Atzeri expressed: > > On 11.02.2023 22:37, Jose Isaias Cabrera via Cygwin wrote: > > > > Greetings. > > > > If I install python39 and thus, > > $ python > > Python 3.9.10 (main, Jan 20 2022, 21:37:52) [GCC 11.2.0] on cygwin > > Type "help",

Re: Changing the python sqlite3 version to the latest

2023-02-14 Thread Marco Atzeri via Cygwin
On 11.02.2023 22:37, Jose Isaias Cabrera via Cygwin wrote: Greetings. If I install python39 and thus, $ python Python 3.9.10 (main, Jan 20 2022, 21:37:52) [GCC 11.2.0] on cygwin Type "help", "copyright", "credits" or "license" for more information. import sqlite3 sqlite3.sqlite_version

Re: Changing the python sqlite3 version to the latest

2023-02-13 Thread Jose Isaias Cabrera via Cygwin
On Saturday, February 11, 2023 04:37 PM, Jose Isaias Cabrera expressed: > Greetings. > > If I install python39 and thus, > $ python > Python 3.9.10 (main, Jan 20 2022, 21:37:52) > [GCC 11.2.0] on cygwin > Type "help", "copyright", "credits" or "license" for more information. > >>> import sqlite3

Changing the python sqlite3 version to the latest

2023-02-11 Thread Jose Isaias Cabrera via Cygwin
Greetings. If I install python39 and thus, $ python Python 3.9.10 (main, Jan 20 2022, 21:37:52) [GCC 11.2.0] on cygwin Type "help", "copyright", "credits" or "license" for more information. >>> import sqlite3 >>> sqlite3.sqlite_version '3.34.0' >>> The SQlite3 version installed is v3.34.0.