Skip to content

Commit

Permalink
Backport PR #3125: Skip scanorama on Python 3.9 (#3126)
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp A <[email protected]>
  • Loading branch information
meeseeksmachine and flying-sheep authored Jun 25, 2024
1 parent 551dbf9 commit af88467
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/external/test_scanorama_integrate.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from __future__ import annotations

import sys

import pytest

import scanpy as sc
import scanpy.external as sce
from testing.scanpy._helpers.data import pbmc68k_reduced
from testing.scanpy._pytest.marks import needs

pytestmark = [needs.scanorama]
pytestmark = [
needs.scanorama,
pytest.mark.skipif(sys.version_info < (3, 10), reason="annoy is unstable on 3.9"),
]


def test_scanorama_integrate():
Expand Down

0 comments on commit af88467

Please sign in to comment.