Skip to content

Commit

Permalink
Merge branch 'master' into merge_try
Browse files Browse the repository at this point in the history
  • Loading branch information
pawlizio authored Dec 5, 2023
2 parents e50225f + 575757a commit a7d5da4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ jobs:
run: |
coverage combine coverage*/.coverage*
coverage report --fail-under=80
coverage xml
- name: Upload coverage to Codecov
uses: codecov/[email protected]
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
16 changes: 16 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"files.associations": {
"*.yaml": "home-assistant"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
},
"isort.args":["--profile", "black"],
"python.testing.pytestArgs": [],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}
1 change: 1 addition & 0 deletions pyvlx/pyvlx.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def __init__(
self.protocol_version = None
self.klf200 = Klf200Gateway(pyvlx=self)
self.api_call_semaphore = asyncio.Semaphore(1) # Limit parallel commands
PYVLXLOG.debug("Loadig pyvlx v1.1.74")

async def connect(self) -> None:
"""Connect to KLF 200."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

PKG_ROOT = os.path.dirname(__file__)

VERSION = "0.2.20"
VERSION = "0.1.74"


def get_long_description() -> str:
Expand Down

0 comments on commit a7d5da4

Please sign in to comment.