diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d23e7bc8c..189a5b0db 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -44,7 +44,7 @@ repos: types: [python] - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.4.3 + rev: v0.4.4 hooks: # Run the linter. - id: ruff @@ -70,7 +70,7 @@ repos: hooks: - id: markdownlint - repo: https://github.com/tox-dev/pyproject-fmt - rev: "1.8.0" + rev: "2.0.4" hooks: - id: pyproject-fmt - repo: https://github.com/pre-commit/mirrors-mypy diff --git a/albumentations/__init__.py b/albumentations/__init__.py index 3f20305ed..0cbc142a8 100644 --- a/albumentations/__init__.py +++ b/albumentations/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.6" +__version__ = "1.4.7" from albumentations.check_version import check_for_updates diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 0d0372dda..6dad30587 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -16,12 +16,20 @@ requirements: - python - numpy>=1.24.4 - scipy + - scikit-learn + - pydantic>=2.7 + - pytorch + - typing_extensions - opencv-python-headless # Ensure correct dependency run: - python - numpy>=1.24.4 - scipy + - scikit-learn + - pydantic>=2.7 + - pytorch + - typing_extensions - opencv-python-headless # Ensure correct dependency test: diff --git a/requirements-dev.txt b/requirements-dev.txt index ab2c62212..1c8ae7671 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -5,7 +5,7 @@ pytest>=8.2.0 pytest_cov>=4.1.0 pytest_mock>=3.14.0 requests>=2.31.0 -ruff>=0.4.3 +ruff>=0.4.4 tomli>=2.0.1 types-pkg-resources types-PyYAML