Bump importlib to 3.14 (#14138)

This commit is contained in:
Semyon Moroz
2025-05-26 14:12:19 +00:00
committed by GitHub
parent 8cbb7167c6
commit 2091fe71b2
10 changed files with 206 additions and 85 deletions
+6 -1
View File
@@ -1,8 +1,13 @@
from importlib.abc import Traversable
import sys
from typing import Final
from networkx.utils.backends import _dispatchable
if sys.version_info >= (3, 11):
from importlib.resources.abc import Traversable
else:
from importlib.abc import Traversable
__all__ = ["graph_atlas", "graph_atlas_g"]
NUM_GRAPHS: Final = 1253