Skip to content

Commit ab23a33

Browse files
author
Ronen Hilewicz
committed
Remove mypy dependencies
1 parent e4afdfe commit ab23a33

File tree

2 files changed

+21
-33
lines changed

2 files changed

+21
-33
lines changed

poetry.lock

Lines changed: 16 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aserto-directory"
3-
version = "0.30.0"
3+
version = "0.30.0.rc1"
44
description = "gRPC client for Aserto Directory service instances"
55
readme = "README.md"
66
authors = ["Aserto, Inc. <[email protected]>"]
@@ -25,13 +25,14 @@ classifiers = [
2525
]
2626
packages = [
2727
{ include = "aserto", from = "src" },
28+
{ include = "google", from = "src" },
29+
{ include = "buf", from = "src" },
2830
]
2931

3032

3133
[tool.poetry.dependencies]
32-
python = ">=3.8"
33-
grpcio = "^1.49.0"
34-
typing-extensions = ">=3.10.0"
34+
python = ">=3.8,<4"
35+
grpcio = "^1.49"
3536
protobuf = "^4.21.0"
3637
protovalidate = { version = "^0.3.0", python = ">=3.11"}
3738

@@ -40,30 +41,6 @@ black = "^23.11.0"
4041
isort = "^5.10.0"
4142
pyright = "^1.1.0"
4243

43-
[tool.mypy]
44-
explicit_package_bases = true
45-
show_error_codes = true
46-
check_untyped_defs = false
47-
disallow_any_decorated = false
48-
disallow_any_explicit = false
49-
disallow_any_expr = false
50-
disallow_any_generics = false
51-
disallow_any_unimported = true
52-
disallow_incomplete_defs = true
53-
disallow_subclassing_any = true
54-
disallow_untyped_calls = true
55-
disallow_untyped_decorators = true
56-
disallow_untyped_defs = true
57-
implicit_reexport = true
58-
no_implicit_optional = true
59-
strict_equality = true
60-
strict_optional = false
61-
warn_no_return = true
62-
warn_redundant_casts = true
63-
warn_return_any = true
64-
warn_unreachable = true
65-
warn_unused_ignores = true
66-
6744
[build-system]
6845
requires = ["poetry-core>=1.0.0"]
6946
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)