Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Oct 17, 2024
1 parent 4a4f09d commit 8918ae7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 30 deletions.
2 changes: 1 addition & 1 deletion mypy_baseline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from ._cli import entrypoint, main


__version__ = '0.7.1'
__version__ = '0.7.2'
__all__ = ['entrypoint', 'main']
36 changes: 7 additions & 29 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ build-backend = "flit_core.buildapi"

[project]
name = "mypy_baseline"
authors = [
{name = "Gram", email = "[email protected]"},
]
license = {file = "LICENSE"}
authors = [{ name = "Gram", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version", "description"]
Expand All @@ -18,33 +16,13 @@ classifiers = [
"Programming Language :: Python",
"Typing :: Typed",
]
keywords = [
"mypy",
"typing",
"annotations",
"type annotations",
]
keywords = ["mypy", "baseline", "typing", "annotations", "type annotations"]
dependencies = []

[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"requests",
"responses",
]
lint = [
"flake8",
"isort",
"mypy",
"types-requests",
"types-toml",
"unify",
]
docs = [
"sphinx",
"myst-parser",
]
test = ["pytest", "pytest-cov", "requests", "responses"]
lint = ["flake8", "isort", "mypy", "types-requests", "types-toml", "unify"]
docs = ["sphinx", "myst-parser"]


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

[tool.mypy]
files = ["mypy_baseline", "tests"]
python_version = 3.8
python_version = "3.8"
ignore_missing_imports = true
# follow_imports = "silent"
show_error_codes = true
Expand Down

0 comments on commit 8918ae7

Please sign in to comment.