Skip to content

Commit

Permalink
poetry: support Python 3.10
Browse files Browse the repository at this point in the history
Bleak 0.13 adds support for Python 3.10 (and fixes major memory leak on Windows).

Limiting Python version to <3.11 might also help speed up poetry update
according to some comments in python-poetry/poetry#2094.
  • Loading branch information
dlech committed Nov 16, 2021
1 parent af3281d commit b684f05
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 53 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Added support for Python 3.10.

### Fixed
- Fixed `tqdm` dependency version.

Expand Down
74 changes: 24 additions & 50 deletions poetry.lock

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

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,15 @@ pybricksdev = 'pybricksdev.cli:main'
aioserial = "^1.3.0"
argcomplete = "^1.11.1"
asyncssh = "^2.2.1"
bleak = "^0.12.1"
bleak = "^0.13.0"
mpy-cross = "1.14"
python = "^3.8"
python = ">=3.8,<3.11"
tqdm = "^4.62.3"
validators = "^0.18.2"
pyusb = "^1.0.2"
semver = "^2.13.0"
appdirs = "^1.4.4"
prompt-toolkit = "^3.0.18"
winrt = {version = "^1.0.21033", platform = "win32"}

[tool.poetry.dev-dependencies]
black = {version = "^21.5b1", allow-prereleases = true}
Expand Down

0 comments on commit b684f05

Please sign in to comment.