Can not import biom module python 3.10

#python3.10
#biom import error
#Changed from _collections import Hashable, Iterable to from _collections_abc import Iterable, Hashable
#This got me further through the import process
#Still stuck at _filter.pyx though
#Changing this file does nothing even when changing from collections import Iterable to from _collections_abc import Iterable

import biom
Traceback (most recent call last):
File “”, line 1, in
File “/usr/local/lib/python3.10/site-packages/biom/init.py”, line 51, in
from .table import Table
File “/usr/local/lib/python3.10/site-packages/biom/table.py”, line 202, in
from ._filter import _filter
File “biom/_filter.pyx”, line 12, in init biom._filter
from _collections_abc import Iterable

#yet if I run from the python prompt it works

from _collections_abc import Iterable

#any thoughts