Skip to content

Commit 818f44c

Browse files
author
Daniel Abercrombie
committed
Use newer numpy, but not too new
1 parent 531def8 commit 818f44c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'more-itertools<6.0.0',
2323
'cherrypy<18.0.0',
2424
'mako',
25-
'numpy>=1.6.1',
25+
'numpy>=1.14.5,<1.17',
2626
'scipy==1.1.0',
2727
'scikit-learn==0.20.3',
2828
'passlib>=1.6',

workflowmonit/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
schedule
2-
git+https://github.com/dmwm/WMCore.git
2+
CMSMonitoring
33
stomp.py
44
pyyaml>=5.1

workflowmonit/stompAMQ.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python
22
import json
33

4-
from WMCore.Services.StompAMQ.StompAMQ import StompAMQ
4+
from CMSMonitoring import StompAMQ
55

66

77
class stompAMQ(StompAMQ):
88
"""
9-
Overriding :py:mod:`WMCore.Services.StompAMQ.StompAMQ.StompAMQ`'s
9+
Overriding :py:mod:`CMSMonitoring.StompAMQ`'s
1010
:py:func:`_send_single` method. The default ``destination`` -- **queue** is
1111
not authorizing me to write.
1212
"""

0 commit comments

Comments
 (0)