Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Commit f2f5c88

Browse files
committed
Merge branch 'release/jakarta' into build/jakarta/2020.330
2 parents c9c1887 + 4977a8a commit f2f5c88

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
* Fix crash at start
1212

13+
* fdsnws
14+
15+
* Fix fdsnws/event event type and evaluation mode filter
16+
1317
## Release 2020.330
1418

1519
```SC_API_VERSION 13.0.0```

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ ENDIF (SC_GLOBAL_PYTHON_WRAPPER)
4848
SET(PYTHON_LIBRARY_SUFFIX /python)
4949
SET(PYTHON_LIBRARY_PATH lib${PYTHON_LIBRARY_SUFFIX})
5050

51+
IF(SC_GLOBAL_PYTHON_WRAPPER_NUMPY)
52+
FIND_PACKAGE(Numpy)
53+
ENDIF()
54+
5155
OPTION(SC_GLOBAL_GUI "Build graphical user interfaces (requires Qt4 or Qt5)" ON)
5256
OPTION(SC_GLOBAL_GUI_QT5 "Build graphical user interfaces for Qt5" ON)
5357

src/trunk/apps/fdsnws/fdsnws.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def initConfiguration(self):
592592
"list takes precedence" % overlapCount,
593593
file=sys.stderr)
594594
except Exception as e:
595-
print("error parsing eventType.whitelist: %s" % str(e),
595+
print("error parsing eventType.blacklist: %s" % str(e),
596596
file=sys.stderr)
597597
return False
598598
except Exception:
@@ -942,7 +942,7 @@ def _site(self):
942942

943943
# query
944944
event1.putChild(b'query', FDSNEvent(
945-
self._hideAuthor, self._evaluationMode,
945+
self._hideAuthor, self._hideComments, self._evaluationMode,
946946
self._eventTypeWhitelist, self._eventTypeBlacklist,
947947
self._eventFormats))
948948

src/trunk/libs/swig/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH})
1+
INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_DIR})
22
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
33
INCLUDE_DIRECTORIES(../../../system/libs/swig)
44

0 commit comments

Comments
 (0)