Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

Version 0.5.0rc2
------------
- For better compatibility with `scanpy`, lower bounds on dependencies have been relaxed.

Version 0.5.0rc1
------------
This version improves compatibility with `scanpy`:
Expand Down
42 changes: 21 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "illico"
version = "0.5.0rc1"
version = "0.5.0rc2"
description = "Fast asymptotic mannwhitney-u test"
authors = [
{name = "remydubois",email = "remydubois14@gmail.com"}
Expand All @@ -9,9 +9,9 @@ readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"anndata (>=0.11)",
"numba (>=0.63.1)",
"pandas (>=2.3.3,<3.0.0)",
"scipy (>=1.16.3,<2.0.0)",
"numba (>=0.60)",
"pandas (>=2.2.2)",
"scipy (>=1.13,<2.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
"joblib (>=1.5.3,<2.0.0)",
"loguru (>=0.7.3,<0.8.0)",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_asymptotic_wilcoxon.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import pytest
import scanpy as sc
from numba import set_num_threads
from pdex import pdex
from scipy import sparse as py_sparse
from scipy.stats import mannwhitneyu

Expand Down Expand Up @@ -402,6 +401,7 @@ def run():
with warnings.catch_warnings():
warnings.simplefilter("ignore")
if method == "pdex":
import pdex
mode = "ref" if test == "ovo" else "all"
pdex(
data,
Expand Down
Loading