diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 67020ef..ddceaa4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ ci: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v6.0.0 hooks: - id: check-yaml - id: check-case-conflict @@ -18,14 +18,14 @@ repos: - id: requirements-txt-fixer - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 7.0.0 hooks: - id: isort name: Format imports exclude: docs/ - - repo: https://github.com/psf/black - rev: 24.3.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 25.12.0 hooks: - id: black name: Format code diff --git a/setup.py b/setup.py index 934a9f1..d5c39ac 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ import os -import sys -import subprocess import platform - +import subprocess +import sys from datetime import datetime + from setuptools import find_packages, setup from wheel.bdist_wheel import bdist_wheel as _bdist_wheel