Skip to content

Commit

Permalink
fix: legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Jun 16, 2023
1 parent 6c66d4c commit 69f329d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
from distutils.command.build_ext import build_ext
from os.path import join
from typing import Any
from typing import Any, Dict

try:
from setuptools import Extension
Expand All @@ -26,7 +26,7 @@ def build_extensions(self) -> None:
super().build_extensions()


def build(setup_kwargs: dict[Any, Any]) -> None:
def build(setup_kwargs: Dict[Any, Any]) -> None:
if os.environ.get("SKIP_CYTHON", False):
return
try:
Expand Down

0 comments on commit 69f329d

Please sign in to comment.