Skip to content
Snippets Groups Projects
Commit ea1482ae authored by Drew Devereux's avatar Drew Devereux
Browse files

Merge branch 'add-numpy-requirement' into 'master'

YAN-685 Add dependency on numpy

See merge request ska-telescope/ska-tango-base!45
parents c7503270 28a52604
Branches
No related tags found
No related merge requests found
...@@ -25,6 +25,9 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK ...@@ -25,6 +25,9 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK
## Version History ## Version History
#### Not released yet
- 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
enabled on all devices. It cannot be disabled without restarting the process. enabled on all devices. It cannot be disabled without restarting the process.
......
...@@ -35,7 +35,13 @@ setuptools.setup( ...@@ -35,7 +35,13 @@ setuptools.setup(
], ],
platforms=["OS Independent"], platforms=["OS Independent"],
setup_requires=[] + pytest_runner, setup_requires=[] + pytest_runner,
install_requires=["debugpy", "transitions", "ska_ser_logging"], install_requires=[
"debugpy",
"numpy",
"pytango",
"ska_ser_logging",
"transitions",
],
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