Skip to content

Commit

Permalink
Merge branch 'release/v0.2.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Oct 13, 2024
2 parents 2eb0a13 + c8ddfef commit d95365d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion colour_hdri/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def __getattr__(self, attribute) -> Any:

__major_version__ = "0"
__minor_version__ = "2"
__change_version__ = "4"
__change_version__ = "5"
__version__ = ".".join((__major_version__, __minor_version__, __change_version__))

try:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "colour-hdri"
version = "0.2.4"
version = "0.2.5"
description = "HDRI processing algorithms for Python"
readme = "README.rst"
requires-python = ">=3.10,<3.14"
Expand Down Expand Up @@ -95,7 +95,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = [ "colour_demosaicing" ]
packages = [ "colour_hdri" ]

[tool.hatch.build.targets.sdist]
exclude = [
Expand Down Expand Up @@ -142,7 +142,7 @@ reportUnusedExpression = false
addopts = "--durations=5"

[tool.ruff]
target-version = "py39"
target-version = "py310"
line-length = 88
select = [
"A", # flake8-builtins
Expand Down

0 comments on commit d95365d

Please sign in to comment.