Merge pull request #2994 from pypeclub/feature/limiting-pyrigt-projects-tomlh

This commit is contained in:
Milan Kolar 2022-04-04 08:27:15 +02:00 committed by GitHub
commit ae8ee5ddc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,3 +136,19 @@ hash = "de63a8bf7f6c45ff59ecafeba13123f710c2cbc1783ec9e0b938e980d4f5c37f"
[openpype.thirdparty.oiio.darwin]
url = "https://distribute.openpype.io/thirdparty/oiio-2.2.0-darwin.tgz"
hash = "sha256:..."
[tool.pyright]
include = [
"igniter",
"openpype",
"repos",
"vendor"
]
exclude = [
"**/node_modules",
"**/__pycache__"
]
ignore = ["website", "docs", ".git"]
reportMissingImports = true
reportMissingTypeStubs = false