You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2021/02/18 23:25:25 UTC

[incubator-heron] branch master updated: Specifying explicit transitive dependency for uvloop due to Python version conflict (#3675)

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new a8eb752  Specifying explicit transitive dependency for uvloop due to Python version conflict (#3675)
a8eb752 is described below

commit a8eb752f6f173e2c17589d221d2592b198fb2add
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Thu Feb 18 18:25:20 2021 -0500

    Specifying explicit transitive dependency for uvloop due to Python version conflict (#3675)
    
    Adding a temporary fix until uvicorn fix is released
---
 heron/tools/ui/src/python/BUILD | 1 +
 1 file changed, 1 insertion(+)

diff --git a/heron/tools/ui/src/python/BUILD b/heron/tools/ui/src/python/BUILD
index 187eea5..29422a6 100644
--- a/heron/tools/ui/src/python/BUILD
+++ b/heron/tools/ui/src/python/BUILD
@@ -13,6 +13,7 @@ pex_library(
         "jinja2==2.11.2",
         "aiofiles==0.5.0",
         "uvicorn==0.11.7",
+        "uvloop==0.14.0",
     ],
     deps = [
         "//heron/common/src/python:common-py",