Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
1.0.0
* support 3.11 and drop older than 3.7. 3.5 and 3.6 still may work, but not tested
* supported version changed. from 3.9 to 3.13, and 2.7. Python 3.5 - 3.8 may still work, but not tested.

* 1.0.0 will be last Python 2.7 compatible version.

* (FTS3/4) stop using direct SQLite C API call - this will unblock APSW Amalgamation build
* (Non Windows) use "_sqlite3" native extension instead of "libsqlite3" to access SQLite internals - to unblock some Python installations that has "_sqlite3" with "libsqlite3" statically linked. see https://github.com/hideaki-t/sqlite-fts-python/issues/30

Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ Requirements
============

* Python 2.7, Python 3.9+, and PyPy2.7, PyPy3.10+ (older versions may work, but not tested)

* sqlite3 has to be dynamically linked. see GH-37_

* CFFI_
* FTS3/4 and/or FTS5 enabled SQLite3 or APSW_ (OS/Python bundled SQLite3 shared library may not work, building sqlite3 from source or pre-compiled binary may be required)

Expand Down Expand Up @@ -97,3 +100,4 @@ Thanks
.. _build status: https://github.com/hideaki-t/sqlite-fts-python/actions/workflows/package.yml
.. _APSW: https://github.com/rogerbinns/apsw
.. _GH-14: https://github.com/hideaki-t/sqlite-fts-python/issues/14
.. _GH-37: https://github.com/hideaki-t/sqlite-fts-python/issues/37
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sqlitefts"
version = "1.0.dev0"
version = "1.0.0"
description = "A Python binding for tokenizers of SQLite Full Text Search"
authors = [{ name = "Hideaki Takahashi", email = "mymelo@gmail.com" }]
dependencies = [
Expand Down