Skip to content

Commit 69144be

Browse files
authored
Updgraded Python version to 3.11.
1 parent 6d5af6a commit 69144be

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.10
2+
python: python3.11
33

44
repos:
55
- repo: https://github.com/charliermarsh/ruff-pre-commit

pyalarmdotcomajax/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
)
4747
from pyalarmdotcomajax.websockets.client import WebSocketClient, WebSocketState
4848

49-
__version__ = "0.5.3"
49+
__version__ = "0.5.4"
5050

5151
log = logging.getLogger(__name__)
5252

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[tool.black]
66
line-length = 115
7-
target-version = ["py310"]
7+
target-version = ["py311"]
88
exclude = 'generated'
99
preview = "True"
1010

1111
[tool.mypy]
12-
python_version = "3.10"
12+
python_version = "3.11"
1313
show_error_codes = true
1414
# follow_imports = "silent"
1515
ignore_missing_imports = true
@@ -38,7 +38,7 @@ norecursedirs = [".git", "testing_config"]
3838
asyncio_mode = "auto"
3939

4040
[tool.ruff]
41-
target-version = "py310"
41+
target-version = "py311"
4242
unfixable = [
4343
"F841" # Unused variables
4444
]

0 commit comments

Comments
 (0)