From c82612cc0b13362050991d5cf062d652a7bfd1e4 Mon Sep 17 00:00:00 2001 From: colinvwood <68213641+colinvwood@users.noreply.github.com> Date: Wed, 1 May 2024 20:54:47 -0700 Subject: [PATCH] MAINT: python 3.9/pandas 2.* update (#162) --- q2_taxa/_method.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q2_taxa/_method.py b/q2_taxa/_method.py index 81ed60e..afee37f 100644 --- a/q2_taxa/_method.py +++ b/q2_taxa/_method.py @@ -79,7 +79,7 @@ def _ids_to_keep_from_taxonomy(feature_ids, taxonomy, include, exclude, # becomes an issue, this is a target for refactoring. ids_to_keep -= set(taxonomy.get_ids(where=query)) - return ids_to_keep + return list(ids_to_keep) def filter_table(table: pd.DataFrame, taxonomy: qiime2.Metadata,