Merge branch 'develop' into enhancement/web_action_action_to_create_folder_structure

This commit is contained in:
Mustafa Zaky Jafar 2025-06-23 21:38:06 +03:00 committed by GitHub
commit e565ee4e58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
82 changed files with 9420 additions and 1168 deletions

View file

@ -5,7 +5,7 @@
[tool.poetry]
name = "ayon-core"
version = "1.3.1+dev"
version = "1.3.2+dev"
description = ""
authors = ["Ynput Team <team@ynput.io>"]
readme = "README.md"
@ -20,15 +20,12 @@ pytest = "^8.0"
pytest-print = "^1.0"
ayon-python-api = "^1.0"
# linting dependencies
ruff = "0.11.7"
pre-commit = "^3.6.2"
ruff = "^0.11.7"
pre-commit = "^4"
codespell = "^2.2.6"
semver = "^3.0.2"
mypy = "^1.14.0"
mock = "^5.0.0"
attrs = "^25.0.0"
pyblish-base = "^1.8.7"
clique = "^2.0.0"
opentimelineio = "^0.17.0"
tomlkit = "^0.13.2"
requests = "^2.32.3"
mkdocs-material = "^9.6.7"
@ -42,6 +39,16 @@ mike = "^2.1.3"
mkdocstrings-shell = "^1.0.2"
nxtools = "^1.6"
[tool.poetry.group.test.dependencies]
attrs = "^25.0.0"
pyblish-base = "^1.8.7"
clique = "^2.0.0"
opentimelineio = "^0.17.0"
speedcopy = "^2.1"
qtpy="^2.4.3"
pyside6 = "^6.5.2"
pytest-ayon = { git = "https://github.com/ynput/pytest-ayon.git", branch = "chore/align-dependencies" }
[tool.codespell]
# Ignore words that are not in the dictionary.
ignore-words-list = "ayon,ynput,parms,parm,hda,developpement"
@ -54,11 +61,13 @@ skip = "./.*,./package/*,*/client/ayon_core/vendor/*"
count = true
quiet-level = 3
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/client"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
@ -66,3 +75,11 @@ addopts = "-ra -q"
testpaths = [
"client/ayon_core/tests"
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"api: API tests",
"cli: CLI tests",
"slow: Slow tests",
"server: Tests that require a running AYON server",
]