From b4efea30a5363a2e19e6e7739202ec7d9678e285 Mon Sep 17 00:00:00 2001 From: Glenn Waters Date: Tue, 12 Apr 2022 12:05:57 -0400 Subject: [PATCH] Add py.typed; tweak CI --- .github/workflows/code-quality.yml | 2 +- CHANGELOG.md | 4 ++++ elkm1_lib/py.typed | 0 pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 elkm1_lib/py.typed diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 6dcb2c7..626dc9b 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -54,7 +54,7 @@ jobs: - name: Run mypy run: | source .venv/bin/activate - mypy --strict elkm1_lib + mypy --show-error-codes --strict elkm1_lib - name: Run isort check run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index a71fc12..17e7326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project follows [Semantic Versioning](https://semver.org/). +## [1.3.1] +- Add py.typed +- Tweak CI to be more informative + ## [1.3.0] - Add typing: https://peps.python.org/pep-0561/ - Changed minimum Python version to 3.9 diff --git a/elkm1_lib/py.typed b/elkm1_lib/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index 774f0b3..6378043 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "elkm1-lib" -version = "1.3.0" +version = "1.3.1" description = "Library for interacting with ElkM1 alarm/automation panel." homepage = "https://github.com/gwww/elkm1" authors = ["Glenn Waters "]