Skip to content
Snippets Groups Projects
Unverified Commit eda92789 authored by Rodrigo Tobar's avatar Rodrigo Tobar
Browse files

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: default avatarRodrigo Tobar <rtobar@icrar.org>
parent c6a213f7
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK ...@@ -26,7 +26,7 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK
## Version History ## Version History
#### Not released yet #### Not released yet
- Make dependency on `numpy` python package explicit. - Make dependency on `pytango` and `numpy` python packages explicit.
#### 0.10.0 #### 0.10.0
- Add `DebugDevice` command to `SKABaseDevice`. This allows remote debugging to be - Add `DebugDevice` command to `SKABaseDevice`. This allows remote debugging to be
......
...@@ -35,7 +35,7 @@ setuptools.setup( ...@@ -35,7 +35,7 @@ setuptools.setup(
], ],
platforms=["OS Independent"], platforms=["OS Independent"],
setup_requires=[] + pytest_runner, 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"], tests_require=["pytest", "coverage", "pytest-json-report", "pytest-forked"],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment