From eda92789c9349a8725f08e39ddb7490b9fb16029 Mon Sep 17 00:00:00 2001
From: Rodrigo Tobar <rtobar@icrar.org>
Date: Thu, 1 Apr 2021 16:13:10 +0800
Subject: [PATCH] Add dependency on pytango

Just like numpy, pytango is a (core) dependency of this package, but it
had never been specified in the install_requires list. This commit fixes
that.

This problem was found while working on YAN-685.

Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
---
 README.md | 2 +-
 setup.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index d14d109e..4cfacfbf 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK
 ## Version History
 
 #### Not released yet
-- Make dependency on `numpy` python package explicit.
+- Make dependency on `pytango` and `numpy` python packages explicit.
 
 #### 0.10.0
 - Add `DebugDevice` command to `SKABaseDevice`.  This allows remote debugging to be
diff --git a/setup.py b/setup.py
index 4519265b..30cc936e 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@ setuptools.setup(
     ],
     platforms=["OS Independent"],
     setup_requires=[] + pytest_runner,
-    install_requires=["debugpy", "numpy", "transitions", "ska_ser_logging"],
+    install_requires=["debugpy", "numpy", "pytango", "transitions", "ska_ser_logging"],
     tests_require=["pytest", "coverage", "pytest-json-report", "pytest-forked"],
     entry_points={
         "console_scripts": [
-- 
GitLab