Skip to content

Commit bca43f0

Browse files
committed
removed parallel libraries
1 parent 51c7f0f commit bca43f0

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

package/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,10 +384,8 @@ def extensions(config):
384384
['MDAnalysis/lib/nsgrid' + source_suffix],
385385
include_dirs=include_dirs,
386386
language='c++',
387-
libraries=parallel_libraries,
388-
define_macros=define_macros + parallel_macros,
389-
extra_compile_args=cpp_extra_compile_args + parallel_args,
390-
extra_link_args=parallel_args)
387+
define_macros=define_macros,
388+
extra_compile_args=cpp_extra_compile_args)
391389
pre_exts = [libdcd, distances, distances_omp, qcprot,
392390
transformation, libmdaxdr, util, encore_utils,
393391
ap_clustering, spe_dimred, cutil, augment, nsgrid]

testsuite/MDAnalysisTests/lib/test_pkdtree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,4 @@ def test_search(b, qns):
207207
expected_neighbors = np.sort(expected_neighbors, axis=0)
208208
else:
209209
expected_neighbors = list()
210-
assert_equal(found_neighbors, expected_neighbors)
210+
assert_almost_equal(found_neighbors, expected_neighbors)

0 commit comments

Comments
 (0)