diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2375d2..40e1d02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1"] steps: - uses: actions/checkout@v3 - name: Setup Python ${{ matrix.python-version }} @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12.0-rc.1" - uses: abatilo/actions-poetry@v2.3.0 - name: Install bluetooth run: | @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1"] steps: - uses: actions/checkout@v3 - name: Setup Python ${{ matrix.python-version }} @@ -93,7 +93,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12.0-rc.1" - name: Install Poetry uses: abatilo/actions-poetry@v2.3.0 - run: poetry install @@ -111,7 +111,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12.0-rc.1" - name: Install Poetry uses: abatilo/actions-poetry@v2.3.0 - run: poetry install diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b15ed1..324c0ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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] +### Added +- Added support for python 3.12. + # [0.10.0] - 2023-08-24 ### Added - Added support for initializing `IdasenDesk` with a `BLEDevice` instead of a MAC address.