File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -917,6 +917,7 @@ Samuele Pedroni
917917Justin Peel
918918Marcel van der Peijl
919919Berker Peksag
920+ Andreas Pelme
920921Steven Pemberton
921922Bo Peng
922923Santiago Peresón
Original file line number Diff line number Diff line change @@ -945,6 +945,9 @@ Tests
945945Build
946946-----
947947
948+ - Issue #5033: Fix building of the sqlite3 extension module when the
949+ SQLite library version has "beta" in it. Patch by Andreas Pelme.
950+
948951- Issue #17228: Fix building without pymalloc.
949952
950953- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
Original file line number Diff line number Diff line change @@ -1073,7 +1073,7 @@ class db_found(Exception): pass
10731073 with open (f ) as file :
10741074 incf = file .read ()
10751075 m = re .search (
1076- r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(. *)"' , incf )
1076+ r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"([\d\.] *)"' , incf )
10771077 if m :
10781078 sqlite_version = m .group (1 )
10791079 sqlite_version_tuple = tuple ([int (x )
You can’t perform that action at this time.
0 commit comments