Description: fixes dataframe sorting syntax issues
 Upstream already has the same fix it seems, although there is no new release.
 Forwarding, as such, is not needed.
Author: Ananthu C V <weepingclown@disroot.org>
Forwarded: not-needed
Last-Update: 2023-11-24
--- a/tests/test_anib.py
+++ b/tests/test_anib.py
@@ -486,6 +486,6 @@
         # ANIblastall
         result = anib.process_blast(self.aniblastalldir, orglengths, fraglengths, mode="ANIblastall")
         assert_frame_equal(
-            result.percentage_identity.sort_index(1).sort_index(),
-            self.aniblastalltgt.sort_index(1).sort_index(),
+            result.percentage_identity.sort_index(axis=1).sort_index(),
+            self.aniblastalltgt.sort_index(axis=1).sort_index(),
         )
