Skip to content

Commit 07e0dcb

Browse files
committed
Adds pyupgrade as a dev dependency
Adds `pyupgrade` to the development dependencies. This enables developers to automatically upgrade Python syntax to more modern versions, improving code maintainability and readability.
1 parent 96a92d8 commit 07e0dcb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies= [
1818
]
1919

2020
maintainers=[
21-
{ name="faif", email="" }
21+
{ name="faif" }
2222
]
2323

2424
[project.urls]
@@ -30,13 +30,13 @@ Contributors = "https://github.com/faif/python-patterns/graphs/contributors"
3030
[project.optional-dependencies]
3131
dev = [
3232
"mypy",
33-
"pipx>=1.7.1"
33+
"pipx>=1.7.1",
3434
"pyupgrade",
3535
"pytest>=6.2.0",
3636
"pytest-cov>=2.11.0",
3737
"pytest-randomly>=3.1.0",
3838
"black>=25.1.0",
39-
"build>=1.2.2"
39+
"build>=1.2.2",
4040
"isort>=5.7.0",
4141
"flake8>=7.1.0",
4242
"tox>=4.25.0"

0 commit comments

Comments
 (0)