Skip to content

Commit 5e1ba3e

Browse files
committed
chore: template
1 parent 08be50c commit 5e1ba3e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.2.0
3+
rev: v4.4.0
44
hooks:
55
- id: check-yaml
66

@@ -10,24 +10,24 @@ repos:
1010
- id: isort
1111

1212
- repo: https://github.com/psf/black
13-
rev: 23.3.0
13+
rev: 23.9.1
1414
hooks:
1515
- id: black
1616
name: black
1717

1818
- repo: https://github.com/pycqa/flake8
19-
rev: 6.0.0
19+
rev: 6.1.0
2020
hooks:
2121
- id: flake8
2222

2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: v0.991
24+
rev: v1.5.1
2525
hooks:
2626
- id: mypy
2727
additional_dependencies: [types-PyYAML, types-requests, types-setuptools, pydantic]
2828

2929
- repo: https://github.com/executablebooks/mdformat
30-
rev: 0.7.14
30+
rev: 0.7.17
3131
hooks:
3232
- id: mdformat
3333
additional_dependencies: [mdformat-gfm, mdformat-frontmatter]

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ A pull request represents the start of a discussion, and doesn't necessarily nee
4646
If you are opening a work-in-progress pull request to verify that it passes CI tests, please consider
4747
[marking it as a draft](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests).
4848

49-
Join the Ethereum Python [Discord](https://discord.gg/PcEJ54yX) if you have any questions.
49+
Join the ApeWorX [Discord](https://discord.gg/apeworx) if you have any questions.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=51.1.1", "wheel", "setuptools_scm[toml]>=5.0"]
2+
requires = ["setuptools>=51.1.1", "wheel", "setuptools_scm[toml]>=5.0,<8"]
33

44
[tool.mypy]
55
exclude = "build/"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"websocket-client", # Used for web socket integration testing
1616
],
1717
"lint": [
18-
"black>=23.3.0,<24", # auto-formatter and linter
19-
"mypy>=0.991,<1", # Static type analyzer
20-
"flake8>=6.0.0,<7", # Style linter
18+
"black>=23.9.1,<24", # auto-formatter and linter
19+
"mypy>=1.5.1,<2", # Static type analyzer
20+
"flake8>=6.1.0,<7", # Style linter
2121
"isort>=5.10.1,<6", # Import sorting linter
2222
"types-setuptools", # Needed due to mypy typeshed
23-
"mdformat>=0.7.16", # Auto-formatter for markdown
23+
"mdformat>=0.7.17", # Auto-formatter for markdown
2424
"mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown
2525
"mdformat-frontmatter>=0.4.1", # Needed for frontmatters-style headers in issue templates
2626
],

0 commit comments

Comments
 (0)