forked from M-Labs/artiq
remove asyncserial dependency
This commit is contained in:
parent
119f64243f
commit
d958b20bb8
|
@ -29,7 +29,6 @@ requirements:
|
|||
- scipy
|
||||
- numpy
|
||||
- prettytable
|
||||
- asyncserial
|
||||
- sphinx 1.4.8
|
||||
- sphinx-argparse
|
||||
- sphinxcontrib-wavedrom
|
||||
|
|
|
@ -35,7 +35,6 @@ requirements:
|
|||
- scipy
|
||||
- numpy
|
||||
- prettytable
|
||||
- asyncserial
|
||||
- h5py 2.8
|
||||
- python-dateutil
|
||||
- pyqt >=5.5
|
||||
|
|
|
@ -32,7 +32,7 @@ mock_modules = ["artiq.gui.waitingspinnerwidget",
|
|||
"artiq.compiler.embedding",
|
||||
"quamash", "pyqtgraph", "matplotlib",
|
||||
"numpy", "dateutil", "dateutil.parser", "prettytable", "PyQt5",
|
||||
"h5py", "serial", "scipy", "scipy.interpolate", "asyncserial",
|
||||
"h5py", "serial", "scipy", "scipy.interpolate",
|
||||
"llvmlite_artiq", "Levenshtein", "aiohttp", "pythonparser"]
|
||||
|
||||
for module in mock_modules:
|
||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ if sys.version_info[:3] < (3, 5, 3):
|
|||
|
||||
# Depends on PyQt5, but setuptools cannot check for it.
|
||||
requirements = [
|
||||
"asyncserial", "numpy", "scipy",
|
||||
"numpy", "scipy",
|
||||
"python-dateutil", "prettytable", "h5py",
|
||||
"quamash", "pyqtgraph", "pygit2", "aiohttp",
|
||||
"llvmlite_artiq", "pythonparser", "python-Levenshtein",
|
||||
|
|
Loading…
Reference in New Issue