We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c66d4c commit 69f329dCopy full SHA for 69f329d
1 file changed
build_ext.py
@@ -4,7 +4,7 @@
4
import os
5
from distutils.command.build_ext import build_ext
6
from os.path import join
7
-from typing import Any
+from typing import Any, Dict
8
9
try:
10
from setuptools import Extension
@@ -26,7 +26,7 @@ def build_extensions(self) -> None:
26
super().build_extensions()
27
28
29
-def build(setup_kwargs: dict[Any, Any]) -> None:
+def build(setup_kwargs: Dict[Any, Any]) -> None:
30
if os.environ.get("SKIP_CYTHON", False):
31
return
32
0 commit comments