Skip to content

Commit

Permalink
build(Pipfile): change dependencies to latest for dependabot to handl…
Browse files Browse the repository at this point in the history
…e from now on
  • Loading branch information
xaviml committed Oct 20, 2020
1 parent 22d3800 commit 0491228
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
This project uses pipenv as python management tool. Run the following commands to install dependencies and hooking up the pre-commit to git

```
pipenv install --dev
pipenv install --dev --python python3.6
pipenv shell
pre-commit install
```

_Note: I recommend working with Python 3.6 since is the minimum version supported_

## Adding a new controller

New controllers need to be added into the `apps/controllerx/devices/` and you will need to define the mapping for the integration you are adding support to.
Expand Down
20 changes: 10 additions & 10 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ verify_ssl = true

[dev-packages]
black = "==19.10b0"
pytest = "~=6.0"
pytest-asyncio = "~=0.12"
pytest-cov = "~=2.8"
pytest-mock = "~=3.1"
mock = "~=4.0"
pre-commit = "~=2.4"
commitizen = "~=1.22"
mypy = "~=0.770"
flake8 = "~=3.8"
pytest = "==6.1.1"
pytest-asyncio = "==0.14.0"
pytest-cov = "==2.10.1"
pytest-mock = "==3.3.1"
mock = "==4.0.2"
pre-commit = "==2.7.1"
commitizen = "==2.4.1"
mypy = "==0.790"
flake8 = "==3.8.4"
controllerx = {path = ".", editable = true}

[packages]
appdaemon = "~=4.0"
appdaemon = "==4.0.5"

[pipenv]
allow_prereleases = true

0 comments on commit 0491228

Please sign in to comment.