Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lwestenberg committed Feb 23, 2022
1 parent 1923a7c commit 5dab916
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"version": "0.2.1",
"configurations": [
{
"name": "Pytest",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This package implements the Bold Smart Lock API to authenticate and unlock a Bol
To install dependencies during development run `pip install .` from the project directory.

## Run tests

Run `pip install pytest pytest-asyncio` to install the dependencies for testing.
Run `python -m pytest --asyncio-mode=auto` from the project directory.

## Usage
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Python Bold Smart Lock setup script."""
from setuptools import setup

_VERSION = "0.2.0"
_VERSION = "0.2.1"


def readme():
Expand All @@ -24,8 +24,6 @@ def readme():
"aiohttp",
"asyncio",
"aioresponses",
"pytest",
"pytest-asyncio"
],
test_suite="tests",
keywords=[
Expand All @@ -39,8 +37,7 @@ def readme():
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down

0 comments on commit 5dab916

Please sign in to comment.