From 522de54b54bbcd58b3868c0c58f45702041f88bc Mon Sep 17 00:00:00 2001 From: ChristopherMancuso Date: Mon, 17 Aug 2026 15:11:35 -0400 Subject: [PATCH] fixed pytest failing due to changes in new pandas 3.0 --- geneplexus/_geneplexus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geneplexus/_geneplexus.py b/geneplexus/_geneplexus.py index ed3f272..5ef4c33 100644 --- a/geneplexus/_geneplexus.py +++ b/geneplexus/_geneplexus.py @@ -56,7 +56,7 @@ def _initial_id_convert(input_genes, file_loc, species): convert_ids.append(agene) else: convert_out.append( - [agene, f"Not in Our List of {species} Entrez Genes", None], + [agene, f"Not in Our List of {species} Entrez Genes", "None"], ) except ValueError: converted_gene: Optional[str] = None @@ -75,7 +75,7 @@ def _initial_id_convert(input_genes, file_loc, species): [ agene, converted_gene or "Could Not be mapped to Entrez", - converted_gene_name or None, + converted_gene_name or "None", ], )