Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c4cba4a884 | ||
|
|
38faec4519 | ||
|
|
b10afd5bd8 | ||
|
|
b1080319ae | ||
|
|
89dee66711 | ||
|
|
3fb588bba9 | ||
|
|
99be8b59c9 | ||
|
|
d4da5eb800 | ||
|
|
0c3abfc727 | ||
|
|
c3a34c6262 | ||
|
|
ae30b5763c | ||
|
|
1cad38d632 | ||
|
|
d2a7014925 | ||
|
|
9eae3da253 | ||
|
|
075338563e | ||
|
|
a7e83ef089 | ||
|
|
03656c04bb | ||
|
|
4be3cbff35 |
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
@@ -1 +0,0 @@
|
||||
github: asottile
|
||||
@@ -11,7 +11,7 @@ repos:
|
||||
- id: name-tests-test
|
||||
- id: requirements-txt-fixer
|
||||
- repo: https://github.com/PyCQA/flake8
|
||||
rev: 3.9.2
|
||||
rev: 4.0.1
|
||||
hooks:
|
||||
- id: flake8
|
||||
additional_dependencies: [flake8-typing-imports==1.7.0]
|
||||
@@ -25,20 +25,20 @@ repos:
|
||||
- id: reorder-python-imports
|
||||
args: [--py3-plus, --add-import, 'from __future__ import annotations']
|
||||
- repo: https://github.com/asottile/add-trailing-comma
|
||||
rev: v2.1.0
|
||||
rev: v2.2.1
|
||||
hooks:
|
||||
- id: add-trailing-comma
|
||||
args: [--py36-plus]
|
||||
- repo: https://github.com/asottile/pyupgrade
|
||||
rev: v2.28.0
|
||||
rev: v2.29.1
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: [--py37-plus]
|
||||
- repo: https://github.com/asottile/setup-cfg-fmt
|
||||
rev: v1.17.0
|
||||
rev: v1.20.0
|
||||
hooks:
|
||||
- id: setup-cfg-fmt
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: v0.910
|
||||
rev: v0.910-1
|
||||
hooks:
|
||||
- id: mypy
|
||||
|
||||
@@ -3,4 +3,4 @@ from __future__ import annotations
|
||||
from babi.main import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit(main())
|
||||
raise SystemExit(main())
|
||||
|
||||
@@ -152,4 +152,4 @@ def main(argv: Sequence[str] | None = None) -> int:
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit(main())
|
||||
raise SystemExit(main())
|
||||
|
||||
@@ -67,4 +67,4 @@ def main(argv: Sequence[str] | None = None) -> int:
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit(main())
|
||||
raise SystemExit(main())
|
||||
|
||||
@@ -87,4 +87,4 @@ def main() -> int:
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit(main())
|
||||
raise SystemExit(main())
|
||||
|
||||
@@ -16,6 +16,7 @@ classifiers =
|
||||
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
|
||||
|
||||
@@ -25,7 +26,7 @@ install_requires =
|
||||
babi-grammars
|
||||
identify
|
||||
onigurumacffi>=0.0.18
|
||||
importlib_metadata>=1;python_version<"3.8"
|
||||
importlib-metadata>=1;python_version<"3.8"
|
||||
windows-curses;sys_platform=="win32"
|
||||
python_requires = >=3.7
|
||||
|
||||
|
||||
Reference in New Issue
Block a user