Skip to content
Snippets Groups Projects
Commit 3ef32d93 authored by Sander Snoo's avatar Sander Snoo
Browse files

Added requirement numpy >= 1.20

parent be0289ef
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,9 @@ class pulselib:
self._backend = backend
if np.__version__ < '1.20':
raise Exception(f'Pulselib requires numpy 1.20+. Found version {np.__version__}')
@property
def channels(self):
channels = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment