Skip to content

Commit

Permalink
Release Toolium 2.6.3 (#299)
Browse files Browse the repository at this point in the history
* Release Toolium 2.6.3

* remove python 3.6 support
  • Loading branch information
rgonalo committed Dec 9, 2022
1 parent 41429ba commit 1ca8559
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']
fail-fast: false

steps:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -4,7 +4,10 @@ Toolium Changelog
v2.6.3
------

*Release date: In development*
*Release date: 2022-12-09*

- Fix error in Android automatic context selection when context does not contain pages
- Remove Python 3.6 support (Python 3.6 reached the end of its life on December 23th, 2021)

v2.6.2
------
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.6.3.dev0
2.6.3
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -65,7 +65,6 @@ def get_long_description():
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
6 changes: 3 additions & 3 deletions toolium/utils/dataset.py
Expand Up @@ -570,7 +570,7 @@ def map_toolium_param(param, config):

try:
mapped_value = config.get(section, property_name)
logger.info(f"Mapping Toolium config param 'param' to its configured value '{mapped_value}'")
logger.debug(f"Mapping Toolium config param 'param' to its configured value '{mapped_value}'")
except Exception:
msg = f"'{param}' param not found in Toolium config file"
logger.error(msg)
Expand Down Expand Up @@ -603,7 +603,7 @@ def get_value_from_context(param, context):
if context.storage and parts[0] in context.storage:
value = context.storage[parts[0]]
else:
logger.info(f"'{parts[0]}' key not found in context storage, searching in context")
logger.debug(f"'{parts[0]}' key not found in context storage, searching in context")
try:
value = getattr(context, parts[0])
except AttributeError:
Expand Down Expand Up @@ -639,7 +639,7 @@ def get_message_property(param, language_terms, language_key):
try:
for key in key_list:
language_terms_aux = language_terms_aux[key]
logger.info(f"Mapping language param '{param}' to its configured value '{language_terms_aux[language_key]}'")
logger.debug(f"Mapping language param '{param}' to its configured value '{language_terms_aux[language_key]}'")
except KeyError:
msg = f"Mapping chain '{param}' not found in the language properties file"
logger.error(msg)
Expand Down

0 comments on commit 1ca8559

Please sign in to comment.