Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/python_sdk_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ['3.11', '3.12', '3.13']
python-version: ['3.11', '3.12', '3.13', '3.14']
include:
- os: ubuntu-latest
path: ~/.cache/pip
Expand Down Expand Up @@ -65,9 +65,9 @@ jobs:

# Only test docs with latest Python on ubuntu since we need graphviz
- name: Full linting only on ubuntu with latest python
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14'
working-directory: ./demos/python/sdk_wireless_camera_control/
run: nox -p 3.13 -s format lint docstrings docs
run: nox -p 3.14 -s format lint docstrings docs

- name: Archive test report on failure
uses: actions/upload-artifact@v5
Expand Down
2 changes: 1 addition & 1 deletion demos/python/sdk_wireless_camera_control/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Complete documentation can be found on [Open GoPro](https://gopro.github.io/Ope

## Installation

> Note! This package requires Python >= 3.11 and < 3.14 and only supports GoPros that
> Note! This package requires Python >= 3.11 and < 3.15 and only supports GoPros that
> [implement the OGP API](https://gopro.github.io/OpenGoPro/ble/#supported-cameras)

The minimal install to use the Open GoPro library and the CLI demos is:
Expand Down
4 changes: 4 additions & 0 deletions demos/python/sdk_wireless_camera_control/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

Unreleased
----------
* Add Python 3.14 support

0.23.0 (February-5-2026)
------------------------
* Add Support for Lit Hero
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Ready to contribute? Here's how to set up Open GoPro for local development.
Minimal Requirements
~~~~~~~~~~~~~~~~~~~~

* Python (>= 3.10, < 3.13)
* Python (>= 3.11, < 3.15)
* `Poetry <https://python-poetry.org/docs/#installation>`_ : Needed to install dependencies / development tasks

Additional Optional Requirements:
Expand Down Expand Up @@ -127,7 +127,7 @@ Before you submit a pull request, check that it meets these guidelines:
$ poetry run poe docs

#. Modify the ``CHANGELOG.rst``.
#. The pull request should work for Python 3.10 - 3.13 on the following platforms:
#. The pull request should work for Python 3.11 - 3.14 on the following platforms:

- Windows 10, version 16299 (Fall Creators Update) and greater
- Linux distributions with BlueZ >= 5.43
Expand Down
2 changes: 1 addition & 1 deletion demos/python/sdk_wireless_camera_control/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For more information on the API, see the relevant documentation:
- `HTTP API <https://gopro.github.io/OpenGoPro/http>`_

.. warning::
This package requires Python >= version 3.11 and < 3.14 and only supports GoPros
This package requires Python >= version 3.11 and < 3.15 and only supports GoPros
that `implement the OGP API <https://gopro.github.io/OpenGoPro/ble/#supported-cameras>`_

Features
Expand Down
1 change: 1 addition & 0 deletions demos/python/sdk_wireless_camera_control/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"3.11",
"3.12",
"3.13",
"3.14",
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

# Validate python version
# This is to make it painfully clear so that people hopefully stop trying invalid versions
if sys.version_info.major != 3 or not 11 <= sys.version_info.minor < 14:
raise RuntimeError("Python >= 3.11 and < 3.14 must be used")
if sys.version_info.major != 3 or not 11 <= sys.version_info.minor < 15:
raise RuntimeError("Python >= 3.11 and < 3.15 must be used")

import logging

Expand Down
4 changes: 2 additions & 2 deletions demos/python/sdk_wireless_camera_control/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion demos/python/sdk_wireless_camera_control/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[tool.poetry.scripts]
Expand All @@ -39,7 +40,7 @@ requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.dependencies]
python = ">=3.11,<3.14"
python = ">=3.11,<3.15"
bleak = "=2.1.1"
construct = "^2"
wrapt = "^2"
Expand Down
Loading