Skip to content

Commit

Permalink
Change minimum Python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gwww committed Dec 1, 2022
1 parent b667ed0 commit a4ab0df
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](https://semver.org/).

## [2.2.1]
- Change minimum Python version back to 3.9

## [2.2.0]
- Refactor connection.py; no functional changes
- Refactor get_description; no functional changes
- Bump minimum Python version to 3.10

## [2.1.0]
- Add keypad function key and chime sync (Thx @jimboca)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ https://github.com/gwww/elkm1

## Requirements

- Python 3.10 (or higher)
- Python 3.9 (or higher)

## Description

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "elkm1-lib"
version = "2.2.0"
version = "2.2.1"
description = "Library for interacting with ElkM1 alarm/automation panel."
homepage = "https://github.com/gwww/elkm1"
authors = ["Glenn Waters <gwwaters+elkm1@gmail.com>"]
Expand All @@ -14,7 +14,7 @@ include = ["CHANGELOG.md", "bin/**/*"]
exclude = ["test"]

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.9"
pyserial-asyncio = ">= 0.5"
async-timeout = "^4.0"

Expand All @@ -39,7 +39,7 @@ build-backend = "poetry.core.masonry.api"
asyncio_mode = "auto"

[tool.pyright]
pythonVersion = "3.10"
pythonVersion = "3.9"

[tool.pylint."MESSAGES CONTROL"]
disable = [
Expand Down Expand Up @@ -69,5 +69,5 @@ enable = [
]

[tool.mypy]
python_version = "3.10"
python_version = "3.9"
ignore_missing_imports = true

0 comments on commit a4ab0df

Please sign in to comment.