Skip to content

Commit 8918ae7

Browse files
committed
bump version
1 parent 4a4f09d commit 8918ae7

File tree

2 files changed

+8
-30
lines changed

2 files changed

+8
-30
lines changed

mypy_baseline/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
from ._cli import entrypoint, main
55

66

7-
__version__ = '0.7.1'
7+
__version__ = '0.7.2'
88
__all__ = ['entrypoint', 'main']

pyproject.toml

Lines changed: 7 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "mypy_baseline"
7-
authors = [
8-
{name = "Gram", email = "[email protected]"},
9-
]
10-
license = {file = "LICENSE"}
7+
authors = [{ name = "Gram", email = "[email protected]" }]
8+
license = { file = "LICENSE" }
119
readme = "README.md"
1210
requires-python = ">=3.8"
1311
dynamic = ["version", "description"]
@@ -18,33 +16,13 @@ classifiers = [
1816
"Programming Language :: Python",
1917
"Typing :: Typed",
2018
]
21-
keywords = [
22-
"mypy",
23-
"typing",
24-
"annotations",
25-
"type annotations",
26-
]
19+
keywords = ["mypy", "baseline", "typing", "annotations", "type annotations"]
2720
dependencies = []
2821

2922
[project.optional-dependencies]
30-
test = [
31-
"pytest",
32-
"pytest-cov",
33-
"requests",
34-
"responses",
35-
]
36-
lint = [
37-
"flake8",
38-
"isort",
39-
"mypy",
40-
"types-requests",
41-
"types-toml",
42-
"unify",
43-
]
44-
docs = [
45-
"sphinx",
46-
"myst-parser",
47-
]
23+
test = ["pytest", "pytest-cov", "requests", "responses"]
24+
lint = ["flake8", "isort", "mypy", "types-requests", "types-toml", "unify"]
25+
docs = ["sphinx", "myst-parser"]
4826

4927

5028
[project.urls]
@@ -55,7 +33,7 @@ mypy-baseline = "mypy_baseline:entrypoint"
5533

5634
[tool.mypy]
5735
files = ["mypy_baseline", "tests"]
58-
python_version = 3.8
36+
python_version = "3.8"
5937
ignore_missing_imports = true
6038
# follow_imports = "silent"
6139
show_error_codes = true

0 commit comments

Comments
 (0)