Skip to content

Commit 969ea28

Browse files
committed
pyproject: add support for Python 3.11
Bleak and other dependencies should support the by now.
1 parent 931a558 commit 969ea28

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
matrix:
10-
python-version: [ '3.8', '3.9', '3.10' ]
10+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- run: pipx install poetry
14-
- uses: actions/setup-python@v2
14+
- uses: actions/setup-python@v4
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- run: poetry install

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
### Added
10+
- Added support for Python 3.11.
11+
912
## [1.0.0-alpha.34] - 2023-01-21
1013

1114
### Added

poetry.lock

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ argcomplete = "^1.11.1"
3333
asyncssh = "^2.2.1"
3434
bleak = "^0.19.4"
3535
mpy-cross-v5 = "^1.0.0"
36-
python = ">=3.8,<3.11"
36+
python = ">=3.8,<3.12"
3737
tqdm = "^4.62.3"
3838
validators = "^0.18.2"
3939
pyusb = "^1.0.2"

0 commit comments

Comments
 (0)