Skip to content

Commit

Permalink
Updgraded Python version to 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
elahd authored Jul 28, 2023
1 parent 6d5af6a commit 69144be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_language_version:
python: python3.10
python: python3.11

repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
Expand Down
2 changes: 1 addition & 1 deletion pyalarmdotcomajax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
)
from pyalarmdotcomajax.websockets.client import WebSocketClient, WebSocketState

__version__ = "0.5.3"
__version__ = "0.5.4"

log = logging.getLogger(__name__)

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 115
target-version = ["py310"]
target-version = ["py311"]
exclude = 'generated'
preview = "True"

[tool.mypy]
python_version = "3.10"
python_version = "3.11"
show_error_codes = true
# follow_imports = "silent"
ignore_missing_imports = true
Expand Down Expand Up @@ -38,7 +38,7 @@ norecursedirs = [".git", "testing_config"]
asyncio_mode = "auto"

[tool.ruff]
target-version = "py310"
target-version = "py311"
unfixable = [
"F841" # Unused variables
]
Expand Down

0 comments on commit 69144be

Please sign in to comment.