Skip to content

home-assistant: 0.68.1 -> 0.69.0#40375

Merged
globin merged 2 commits intoNixOS:masterfrom
dotlambda:home-assistant-0.69.0
May 12, 2018
Merged

home-assistant: 0.68.1 -> 0.69.0#40375
globin merged 2 commits intoNixOS:masterfrom
dotlambda:home-assistant-0.69.0

Conversation

@dotlambda
Copy link
Member

Motivation for this change

https://www.home-assistant.io/blog/2018/05/11/release-69

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option build-use-sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Fits CONTRIBUTING.md.

cc @peterhoeg

@GrahamcOfBorg GrahamcOfBorg added 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux. labels May 11, 2018
@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: home-assistant

Partial log (click to expand)


=============================== warnings summary ===============================
tests/components/test_init.py::TestComponentsCore::test_turn_on_to_not_block_for_domains_without_service
  /nix/store/96wn2gz3mwi71gwcrvpfg39bsymd7gqx-python3-3.6.5/lib/python3.6/unittest/case.py:605: RuntimeWarning: coroutine 'test_turn_on_to_not_block_for_domains_without_serv' was never awaited
    testMethod()

-- Docs: http://doc.pytest.org/en/latest/warnings.html
============================== 1 tests deselected ==============================
============= 167 passed, 1 deselected, 1 warnings in 4.98 seconds =============
/nix/store/3dpkbm0j5mm7q4crimyx1k1n3ryddavl-homeassistant-0.69.0

@dotlambda dotlambda force-pushed the home-assistant-0.69.0 branch from 1d3be22 to 2fde4bb Compare May 11, 2018 18:55
@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: home-assistant

Partial log (click to expand)

tests/components/test_websocket_api.py ..............                    [100%]

=============================== warnings summary ===============================
tests/components/test_init.py::TestComponentsCore::test_turn_on_to_not_block_for_domains_without_service
  /nix/store/96wn2gz3mwi71gwcrvpfg39bsymd7gqx-python3-3.6.5/lib/python3.6/unittest/case.py:605: RuntimeWarning: coroutine 'test_turn_on_to_not_block_for_domains_without_serv' was never awaited
    testMethod()

-- Docs: http://doc.pytest.org/en/latest/warnings.html
==================== 168 passed, 1 warnings in 3.51 seconds ====================
/nix/store/a03jqp94n02mpplapqqd7kclqpa83anp-homeassistant-0.69.0

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: home-assistant

Partial log (click to expand)


=============================== warnings summary ===============================
tests/components/test_init.py::TestComponentsCore::test_turn_on_to_not_block_for_domains_without_service
  /nix/store/wsqdmbvnl02jfl2897nfwx407plj79dp-python3-3.6.5/lib/python3.6/unittest/case.py:605: RuntimeWarning: coroutine 'test_turn_on_to_not_block_for_domains_without_serv' was never awaited
    testMethod()

-- Docs: http://doc.pytest.org/en/latest/warnings.html
============================== 1 tests deselected ==============================
============ 167 passed, 1 deselected, 1 warnings in 19.01 seconds =============
/nix/store/ic2sjsm6chj2f6imh35cpr4azczrf4g6-homeassistant-0.69.0

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: home-assistant

Partial log (click to expand)

tests/components/test_websocket_api.py ..............                    [100%]

=============================== warnings summary ===============================
tests/components/test_init.py::TestComponentsCore::test_turn_on_to_not_block_for_domains_without_service
  /nix/store/wsqdmbvnl02jfl2897nfwx407plj79dp-python3-3.6.5/lib/python3.6/unittest/case.py:605: RuntimeWarning: coroutine 'test_turn_on_to_not_block_for_domains_without_serv' was never awaited
    testMethod()

-- Docs: http://doc.pytest.org/en/latest/warnings.html
=================== 168 passed, 1 warnings in 18.92 seconds ====================
/nix/store/jic9dgr855x0y645czsagsms01p4c67i-homeassistant-0.69.0

@peterhoeg
Copy link
Member

peterhoeg commented May 12, 2018

Couple of things:

  1. colorlog needs to be pinned at 3.1.4
  2. I think we need a newer deluge as this versions spams ImportError: cannot import name 'FailedToReconnectException' when using a switch.deluge or sensor.deluge - haven't looked into it yet.

@peterhoeg
Copy link
Member

This shuts up colorlog:

      colorlog = super.colorlog.overridePythonAttrs (oldAttrs: rec {
        version = "3.1.4";
        src = oldAttrs.src.override {
          inherit version;
          sha256 = "17bpp68w8fhr5az1382qh5r7m14myds414g4zbq3fzspr4wbd3a1";
        };
      });

@dotlambda
Copy link
Member Author

colorlog is only used by the check_config script. Do you need this?
FailedToReconnectException seems to have been introduced in JohnDoee/deluge-client@f9163a5, which happened between 1.3.0 and 1.4.0, so let's just bump the package.

@dotlambda dotlambda requested a review from FRidh as a code owner May 12, 2018 04:10
@GrahamcOfBorg GrahamcOfBorg added the 6.topic: python Python is a high-level, general-purpose programming language. label May 12, 2018
@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: home-assistant, python

Partial log (click to expand)

/nix/store/a03jqp94n02mpplapqqd7kclqpa83anp-homeassistant-0.69.0
/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: home-assistant, python

Partial log (click to expand)


=============================== warnings summary ===============================
tests/components/test_init.py::TestComponentsCore::test_turn_on_to_not_block_for_domains_without_service
  /nix/store/wsqdmbvnl02jfl2897nfwx407plj79dp-python3-3.6.5/lib/python3.6/unittest/case.py:605: RuntimeWarning: coroutine 'test_turn_on_to_not_block_for_domains_without_serv' was never awaited
    testMethod()

-- Docs: http://doc.pytest.org/en/latest/warnings.html
=================== 168 passed, 1 warnings in 19.10 seconds ====================
/nix/store/jic9dgr855x0y645czsagsms01p4c67i-homeassistant-0.69.0
/nix/store/ydxpyrgfqj6z7lqnv059566l7kpn35j3-python-2.7.14

@peterhoeg
Copy link
Member

colorlog is only used by the check_config script. Do you need this?

I don't, but I have used it - I think it makes sense to have it working to ease things for new users.

@dotlambda dotlambda force-pushed the home-assistant-0.69.0 branch from cabb5a7 to a707c13 Compare May 12, 2018 06:53
@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: home-assistant, python

Partial log (click to expand)

/nix/store/a03jqp94n02mpplapqqd7kclqpa83anp-homeassistant-0.69.0
/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: home-assistant, python

Partial log (click to expand)

/nix/store/jic9dgr855x0y645czsagsms01p4c67i-homeassistant-0.69.0
/nix/store/ydxpyrgfqj6z7lqnv059566l7kpn35j3-python-2.7.14

@peterhoeg
Copy link
Member

peterhoeg commented May 12, 2018

notify.matrix is broken upstream: home-assistant/core#14397 and the dependency is no longer specified (also upstream).

@globin globin merged commit ca90a18 into NixOS:master May 12, 2018
@dotlambda dotlambda deleted the home-assistant-0.69.0 branch May 22, 2018 10:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

6.topic: python Python is a high-level, general-purpose programming language. 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants