From 96f65c8a86af11d8889eada5d4151c98e05dd54a Mon Sep 17 00:00:00 2001 From: Sai Rahul Poruri Date: Mon, 26 Oct 2020 09:43:34 +0000 Subject: [PATCH 1/2] DEV : Install pyface using edm instead of installing it from git source modified: ci-src-requirements.txt modified: etstool.py --- ci-src-requirements.txt | 1 - etstool.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ci-src-requirements.txt b/ci-src-requirements.txt index 63d390d8d..e69de29bb 100644 --- a/ci-src-requirements.txt +++ b/ci-src-requirements.txt @@ -1 +0,0 @@ -git+http://github.com/enthought/pyface.git#egg=pyface diff --git a/etstool.py b/etstool.py index bac0b7fc3..18bef3a22 100644 --- a/etstool.py +++ b/etstool.py @@ -111,8 +111,8 @@ # Required runtime dependencies. Should match install_requires in setup.py dependencies = { + "pyface", "traits" + TRAITS_VERSION_REQUIRES, - # pyface is installed from source via ci-src-requirements.txt } # NOTE : pyface is always installed from source From 7dd067c5888c4c4299585466356f722583a3d81f Mon Sep 17 00:00:00 2001 From: Sai Rahul Poruri Date: Mon, 2 Nov 2020 19:52:28 +0000 Subject: [PATCH 2/2] DEV : install pyface from source for cron jobs modified: etstool.py --- etstool.py | 1 + 1 file changed, 1 insertion(+) diff --git a/etstool.py b/etstool.py index 18bef3a22..c392ce069 100644 --- a/etstool.py +++ b/etstool.py @@ -117,6 +117,7 @@ # NOTE : pyface is always installed from source source_dependencies = { + "pyface": "git+http://github.com/enthought/pyface.git#egg=pyface", "traits": "git+http://github.com/enthought/traits.git#egg=traits", }