diff --git a/README.md b/README.md index 999c140..02d7660 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ If you get the error `This package works with libcamera version ..., but you hav | System and Date | libcamera Reported Version | Pip Package Version | | --------------- | -------------------------- | ------------------- | +| Raspberry Pi Bookworm 06/09/2024 | v0.3.1+50-69a894c4 | 0.1a6 | | Raspberry Pi Bookworm 17/06/2024 | v0.3.0+65-6ddd79b5 | 0.1a5 | | Raspberry Pi Bookworm 18/04/2024 | v0.2.0+120-eb00c13d | 0.1a4 | | Raspberry Pi Bookworm 15/02/2024 | v0.2.0+46-075b54d5 | 0.1a3 | diff --git a/meson.build b/meson.build index 11c293b..25038db 100644 --- a/meson.build +++ b/meson.build @@ -29,7 +29,7 @@ else message('Version Check Not Done') endif -libcamera_includes = include_directories('libcamera/include') +libcamera_includes = include_directories('libcamera/include', 'libcamera/src/py/libcamera') libcamera_private = dependency( 'libcamera', required : true, not_found_message : 'Requires libcamera-dev package to be installed - apt install libcamera-dev' diff --git a/pyproject.toml b/pyproject.toml index 8815fc5..3a2724e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ['meson-python', 'pyyaml', 'pybind11'] [project] name = 'rpi-libcamera' -version = '0.1a5' +version = '0.1a6' description = 'libcamera python bindings' readme = 'README.md' @@ -14,9 +14,9 @@ Source = "https://github.com/raspberrypi/pylibcamera" [tool.meson-python.args] setup = [ - '-Drevision=v0.3.0+rpt20240617', + '-Drevision=v0.3.1+rpt20240906', '-Drepository=https://github.com/raspberrypi/libcamera.git', - '-Dversion=v0.3.0+65-6ddd79b5' + '-Dversion=v0.3.1+50-69a894c4' ] [tool.flit.module]