On Jun 22, 2020, at 05:39, Seth G <[email protected]> wrote: > However, there is one feature of using the Windows PATH that I can't seem to > replicate with add_dll_directory. > The MapServer DLL builds are linked to sqlite3 3.24.0, whereas Python 3.8.2 > is linked to 2.6.0. Building with matching versions is not something I can > easily change.
For what it's worth, you're looking at the wrong value (it's easy to do!). '2.6.0' is the version number of the sqlite3 module itself, not of the sqlite3 library. >>> sqlite3.version '2.6.0' >>> sqlite3.sqlite_version '3.31.1' -- Ned Deily [email protected] -- [] _______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/WILPNTOKCGWLNEPWCQXO47A444XL6USJ/ Code of Conduct: http://python.org/psf/codeofconduct/
