Skip to content

Commit

Permalink
Update dependencies due to the pip 20.3
Browse files Browse the repository at this point in the history
Updated dependencies due to the release of Python pip 20.3, a new dependency resolver was introduced in pip.
https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
  • Loading branch information
W00D00 committed Mar 4, 2022
1 parent 1d3a2c2 commit f3b068b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/custom_components/elero/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os

# Python libraries/modules that you would normally install for your component.
REQUIREMENTS = ["pyserial==3.4"]
REQUIREMENTS = ["pyserial>=3.4"]

# Other HASS components that should be setup before the platform is loaded.
DEPENDENCIES = []
Expand Down
2 changes: 1 addition & 1 deletion config/custom_components/elero/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"name": "Elero",
"documentation": "https://github.com/W00D00/home-assistant-elero",
"dependencies": [],
"requirements": ["pyserial==3.4"],
"requirements": ["pyserial>=3.4"],
"codeowners": ["@W00D00"]
}

0 comments on commit f3b068b

Please sign in to comment.