Skip to content

Commit 89c27f4

Browse files
committed
Remove unmaintained dependencies.
1 parent a282870 commit 89c27f4

29 files changed

+865
-201
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ dist/
1717
# IDE Configuration
1818
.idea
1919
.vscode
20+
pyrightconfig.json
2021

2122
# Virtualenv
2223
.venv
2324
venv
2425
.envrc
2526

2627
# Documentation artefacts
27-
docs/_build/
28+
docs/_build/

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
repos:
22
- repo: https://github.com/ambv/black
3-
rev: 21.5b1
3+
rev: 24.4.2
44
hooks:
55
- id: black
66
name: Format Python Code
77
language: python
88
entry: black
99
args:
1010
- --safe
11-
- --line-length=79
12-
- --target-version=py37
11+
- --line-length=88
12+
- --target-version=py39
1313
- .
1414

1515
- repo: https://github.com/pre-commit/pre-commit-hooks
16-
rev: v4.0.1
16+
rev: v4.6.0
1717
hooks:
1818
- id: requirements-txt-fixer
1919
name: Requirements file fixer
@@ -22,8 +22,8 @@ repos:
2222
- requirements.txt
2323
- requirements-dev.txt
2424

25-
- repo: https://gitlab.com/pycqa/flake8
26-
rev: 3.9.2
25+
- repo: https://github.com/PyCQA/flake8
26+
rev: 7.0.0
2727
hooks:
2828
- id: flake8
2929
name: Flake8 Check
@@ -33,7 +33,7 @@ repos:
3333
- paperswithcode
3434

3535
- repo: https://github.com/pycqa/pydocstyle
36-
rev: 6.1.1
36+
rev: 6.3.0
3737
hooks:
3838
- id: pydocstyle
3939
name: Python Documentation Style Check

0 commit comments

Comments
 (0)