Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
rev: v3.6.0
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py39-plus]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
Expand Down
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, Dict
from typing import Any

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
Loading