Skip to content

Commit 69f329d

Browse files
committed
fix: legacy
1 parent 6c66d4c commit 69f329d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build_ext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55
from distutils.command.build_ext import build_ext
66
from os.path import join
7-
from typing import Any
7+
from typing import Any, Dict
88

99
try:
1010
from setuptools import Extension
@@ -26,7 +26,7 @@ def build_extensions(self) -> None:
2626
super().build_extensions()
2727

2828

29-
def build(setup_kwargs: dict[Any, Any]) -> None:
29+
def build(setup_kwargs: Dict[Any, Any]) -> None:
3030
if os.environ.get("SKIP_CYTHON", False):
3131
return
3232
try:

0 commit comments

Comments
 (0)