Skip to content

Commit

Permalink
Merge branch 'branch-23.12' into mtmg_small_improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Oct 23, 2023
2 parents f0a27a4 + d9a8dc7 commit 03fa6ec
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions python/nx-cugraph/nx_cugraph/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# limitations under the License.
from __future__ import annotations

import sys

import networkx as nx

import nx_cugraph as nxcg
Expand Down Expand Up @@ -180,6 +182,11 @@ def key(testpath):
): "self-loops not handled in Louvain",
}
)
if sys.version_info[:2] == (3, 9):
# This test is sensitive to RNG, which depends on Python version
xfail[
key("test_louvain.py:test_threshold")
] = "Louvain does not support seed parameter"

for item in items:
kset = set(item.keywords)
Expand Down

0 comments on commit 03fa6ec

Please sign in to comment.