Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#8)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/pre-commit/pre-commit-hooks: v4.1.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.1.0...v4.4.0)
- [github.com/PyCQA/flake8: 4.0.1 → 6.1.0](PyCQA/flake8@4.0.1...6.1.0)
- https://github.com/asottile/reorder_python_importshttps://github.com/asottile/reorder-python-imports
- [github.com/asottile/reorder-python-imports: v2.7.1 → v3.10.0](asottile/reorder-python-imports@v2.7.1...v3.10.0)
- [github.com/asottile/add-trailing-comma: v2.2.1 → v3.0.1](asottile/add-trailing-comma@v2.2.1...v3.0.1)
- [github.com/asottile/setup-cfg-fmt: v1.20.0 → v2.4.0](asottile/setup-cfg-fmt@v1.20.0...v2.4.0)
- [github.com/pre-commit/mirrors-prettier: v2.5.1 → v3.0.1](pre-commit/mirrors-prettier@v2.5.1...v3.0.1)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Aug 14, 2023
1 parent 31d5885 commit d4491d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: double-quote-string-fixer
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.7.1
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.10.0
hooks:
- id: reorder-python-imports
args: [--py3-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: v2.2.1
rev: v3.0.1
hooks:
- id: add-trailing-comma
args: [--py36-plus]
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.20.0
rev: v2.4.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
rev: v3.0.1
hooks:
- id: prettier
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,13 @@ url = https://github.com/maxwinterstein/shfmt-py
author = Max Winterstein
author_email = github@winterstein.io
license = MIT
license_file = LICENSE
license_files = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy

[options]
python_requires = >=3.6
python_requires = >=3.8
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import stat
import sys
import urllib.request
from distutils.command.build import build as orig_build
from distutils.core import Command
from typing import Tuple

from distutils.command.build import build as orig_build
from distutils.core import Command
from setuptools import setup
from setuptools.command.install import install as orig_install

Expand Down

0 comments on commit d4491d8

Please sign in to comment.