Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ repos:
- id: check-added-large-files
args: [--maxkb=500]
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.8.23
rev: 0.9.8
hooks:
- id: uv-lock
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.3
rev: v0.14.4
hooks:
- id: ruff
args: [--fix]
Expand All @@ -53,7 +53,7 @@ repos:
- id: pip-audit
args: [.]
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v4.2.0
rev: v4.3.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.11.1 - November, 2025

### Fixes

* Remove some false positive error logs.

### Maintenance

* Python 3.14 support.

## 0.11.0 - October, 2025

### Features
Expand Down Expand Up @@ -64,7 +74,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
* Use true Pydantic V2 (or Pydantic V1) models (`DeprecationWarning` added about Pydantic V1).

> [!IMPORTANT]
> **Arta** + **Pydantic V1** + **Python 3.13** is not supported because Pydantic V1 is not supported for Python > 3.12 ([issue 9663](https://github.com/pydantic/pydantic/issues/9663)).
> **Arta** + **Pydantic V1** + **Python >=3.13** is not supported because Pydantic V1 is not supported for Python > 3.12 ([issue 9663](https://github.com/pydantic/pydantic/issues/9663)).

### Documentation

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "arta"
version = "0.11.0"
version = "0.11.1"
requires-python = ">=3.9"
description = "A Python Rules Engine - Make rule handling simple"
readme = "README.md"
Expand All @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
]

Expand Down
4 changes: 2 additions & 2 deletions src/arta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_value_in_nested_dict_from_path(path: str, nested_dict: dict[str, Any]) -
for key in keys:
if value is None:
msg: str = f"Key {value} of path {path} not found in input data."
logger.error(msg)
logger.debug(msg)
raise KeyError(msg)
value = value[key]

Expand Down Expand Up @@ -108,7 +108,7 @@ def parse_dynamic_parameter(
return default_value
else:
msg: str = f"Could not find path '{param_path}' in the input data: {str(error)}"
logger.error(msg)
logger.debug(msg)
raise KeyError(msg) from error

return parameter
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tox]
min_version = 4.0
env_list =
py314
py313
py312
py311
Expand Down