Skip to content

Commit

Permalink
fix: Pin PyChromecast and zeroconf (3rd-party dependency) to specific…
Browse files Browse the repository at this point in the history
… versions to avoid breakage
  • Loading branch information
skorokithakis committed Jul 11, 2021
1 parent cb9cf00 commit 1b31842
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

### Fixes

* Allow use of info cmds on idle/inactive cc (#345) [theychx]

* Include changelog in releases. [Stavros Korokithakis]


Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@

requirements = [
"youtube-dl>=2020.9.20",
"PyChromecast>=9.0.0",
"PyChromecast==9.2.0",
# We don't use zeroconf directly, but PyChromecast does, and they aren't great about
# pinning it, so we've seen breakage. We pin it here just to avoid that.
"zeroconf==0.31.0",
"Click>=7.1.2,<8",
"ifaddr>=0.1.7",
"requests>=2.23.0",
Expand Down

0 comments on commit 1b31842

Please sign in to comment.