Skip to content

Commit b49c0e1

Browse files
Andy-Griggactions-user
authored andcommitted
Generate Client Library code - Automated
1 parent 5b5104c commit b49c0e1

File tree

637 files changed

+17974
-9896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

637 files changed

+17974
-9896
lines changed

ansys-grantami-serverapi-openapi/poetry.lock

+75-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ansys-grantami-serverapi-openapi/pyproject.toml

+18-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "ansys-grantami-serverapi-openapi"
77
description = "Autogenerated client library for the Granta MI Server API."
8-
version = "3.0.0.dev180"
8+
version = "3.0.0.dev182"
99
license = "MIT"
1010
authors = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
1111
maintainers = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
@@ -26,7 +26,8 @@ classifiers = [
2626
"Topic :: Scientific/Engineering :: Information Analysis",
2727
]
2828
packages = [
29-
{ include = "**/*.py", from = "src" }
29+
{ include = "**/*.py", from = "src" },
30+
{ include = "**/py.typed", from = "src" },
3031
]
3132

3233
[tool.poetry.dependencies]
@@ -36,8 +37,9 @@ requests = "^2.26.0"
3637
python-dateutil = "^2.8.2"
3738

3839
[tool.poetry.group.dev.dependencies]
39-
pytest = "^7.0.0"
40+
pytest = "^8.0.0"
4041
requests-mock = "^1.0.0"
42+
mypy = "^1.8.0"
4143

4244
[tool.tox]
4345
legacy_tox_ini = """
@@ -59,3 +61,16 @@ changedir = {toxinidir}/tests
5961
testpaths = [
6062
"./tests",
6163
]
64+
65+
[tool.mypy]
66+
strict = true
67+
warn_return_any = true
68+
warn_unused_configs = true
69+
warn_redundant_casts = true
70+
warn_unused_ignores = true
71+
disallow_untyped_defs = true
72+
no_implicit_optional = true
73+
check_untyped_defs = true
74+
show_error_codes = true
75+
files = "src"
76+

0 commit comments

Comments
 (0)