From 7fac0b978242df23d4c562a2def624a4b6b946e8 Mon Sep 17 00:00:00 2001 From: Guido Draheim Date: Sun, 1 Sep 2024 14:23:45 +0200 Subject: [PATCH] v1.1.3361 --- dotgitconfig.py | 2 +- dotnetrc.py | 2 +- jira2data.py | 2 +- jira2data_api.py | 2 +- jira2data_api_mockup.py | 2 +- odoo2data.py | 2 +- odoo2data.tests.py | 2 +- odoo2data_api.py | 2 +- odoo2data_api_mockup.py | 2 +- odoo2data_xmlrpc.py | 2 +- odootopic.py | 2 +- odootopic.tests.py | 2 +- setup.cfg | 2 +- setup.tabxlsx.cfg | 2 +- tabtofmt.tests.py | 2 +- tabtools.py | 2 +- tabtools.tests.py | 2 +- tabtotext.py | 2 +- tabtotext.tests.py | 2 +- tabtoxlsx.py | 2 +- tabxlsx.py | 2 +- tabxlsx.tests.py | 2 +- timerange.py | 2 +- timerange.tests.py | 2 +- timetrack.py | 2 +- timetrack.tests.py | 2 +- zeit2jira.py | 2 +- zeit2jira.tests.py | 2 +- zeit2json.py | 2 +- zeit2json.tests.py | 2 +- zeit2odoo.py | 2 +- zeit2odoo.tests.py | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/dotgitconfig.py b/dotgitconfig.py index 90353b2..532f93f 100755 --- a/dotgitconfig.py +++ b/dotgitconfig.py @@ -4,7 +4,7 @@ adding functions to read the the gitconfig settings alternativly. """ __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" from typing import List, Dict, Tuple, Optional diff --git a/dotnetrc.py b/dotnetrc.py index ed33643..11314b3 100755 --- a/dotnetrc.py +++ b/dotnetrc.py @@ -6,7 +6,7 @@ where extensions should only be used in a ~/.net-credentials filename. //// Use command './dotnetrc.py set ' to write entries.""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" # dot git-credentials format: # https://:@ diff --git a/jira2data.py b/jira2data.py index 8fcff79..516139b 100755 --- a/jira2data.py +++ b/jira2data.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" from typing import Union, Dict, List, Any, Optional, Tuple, Iterable, Iterator, cast, NamedTuple from requests import Session, Response, HTTPError diff --git a/jira2data_api.py b/jira2data_api.py index d449a68..2fd26df 100755 --- a/jira2data_api.py +++ b/jira2data_api.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" from typing import Union, Dict, List, Any, Optional, Tuple, Iterable, Iterator, cast from requests import Session, Response, HTTPError diff --git a/jira2data_api_mockup.py b/jira2data_api_mockup.py index 6adb8f7..bb21a76 100755 --- a/jira2data_api_mockup.py +++ b/jira2data_api_mockup.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" from typing import Union, Dict, List, Any, Optional, Tuple, Iterable, Iterator, cast from requests import Session, Response, HTTPError diff --git a/odoo2data.py b/odoo2data.py index d44b332..ee6cf14 100755 --- a/odoo2data.py +++ b/odoo2data.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" from typing import Optional, Union, Dict, List, Tuple, cast, Iterable, Iterator, NamedTuple diff --git a/odoo2data.tests.py b/odoo2data.tests.py index c6749b2..982ef15 100755 --- a/odoo2data.tests.py +++ b/odoo2data.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" import tabtotext import odoo2data_api_mockup as odoo_api_mockup diff --git a/odoo2data_api.py b/odoo2data_api.py index 5bf3a6a..8b7c02e 100755 --- a/odoo2data_api.py +++ b/odoo2data_api.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.7.3352" +__version__ = "0.7.3361" import logging from typing import List, Dict, Union, Optional, Tuple, Any, cast diff --git a/odoo2data_api_mockup.py b/odoo2data_api_mockup.py index 1fac87f..0825073 100755 --- a/odoo2data_api_mockup.py +++ b/odoo2data_api_mockup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" from typing import Dict, List, Optional, Generator, cast from odoo2data_api import Cookies, UserID, ProjID, ProjREF, TaskID, TaskREF, EntryID, OdooException diff --git a/odoo2data_xmlrpc.py b/odoo2data_xmlrpc.py index 68a93d7..4f5fc7d 100755 --- a/odoo2data_xmlrpc.py +++ b/odoo2data_xmlrpc.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" from xmlrpc import client as odoo from dotnetrc import set_password_filename, get_username_password, str_get_username_password diff --git a/odootopic.py b/odootopic.py index 45646e3..fdf50c4 100755 --- a/odootopic.py +++ b/odootopic.py @@ -2,7 +2,7 @@ """ associates topics with Odoo project+task coordinates """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.8.3352" +__version__ = "0.8.3361" from typing import List, Dict, Union, Optional, Tuple, Iterator, Iterable, cast diff --git a/odootopic.tests.py b/odootopic.tests.py index 4dc6975..6774467 100755 --- a/odootopic.tests.py +++ b/odootopic.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.8.3352" +__version__ = "0.8.3361" import odootopic as topics from typing import Optional, Tuple, cast diff --git a/setup.cfg b/setup.cfg index 1ae967d..68ca297 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ [metadata] name = timetrack-odoo -version = 1.1.3352 +version = 1.1.3361 license = APL license_files = LICENSE diff --git a/setup.tabxlsx.cfg b/setup.tabxlsx.cfg index 2635340..b485aaf 100644 --- a/setup.tabxlsx.cfg +++ b/setup.tabxlsx.cfg @@ -2,7 +2,7 @@ [metadata] name = tabxlsx -version = 1.1.3352 +version = 1.1.3361 license = APL license_files = tabxlsx.txt diff --git a/tabtofmt.tests.py b/tabtofmt.tests.py index 7e7880f..671d5c0 100644 --- a/tabtofmt.tests.py +++ b/tabtofmt.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" from typing import Optional, Union, Dict, List, Any, Sequence, Callable from tabtotext import JSONList, JSONItem, DataList, DataItem diff --git a/tabtools.py b/tabtools.py index 5defda4..c30a3eb 100755 --- a/tabtools.py +++ b/tabtools.py @@ -7,7 +7,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.5.3352" +__version__ = "1.5.3361" from typing import Union, List import re diff --git a/tabtools.tests.py b/tabtools.tests.py index 12eea53..11d792d 100755 --- a/tabtools.tests.py +++ b/tabtools.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" from tabtools import * import sys diff --git a/tabtotext.py b/tabtotext.py index 71e8ad7..8b7732d 100755 --- a/tabtotext.py +++ b/tabtotext.py @@ -12,7 +12,7 @@ """ __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" from typing import Optional, Union, Dict, List, Any, Sequence, Callable, Type, cast, Tuple, Iterable, Iterator, TextIO, NamedTuple from collections import OrderedDict diff --git a/tabtotext.tests.py b/tabtotext.tests.py index cb67fff..88aa4f3 100644 --- a/tabtotext.tests.py +++ b/tabtotext.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" from typing import Optional, Union, Dict, List, Any, Sequence, Callable, Iterable from tabtotext import JSONList, JSONDict, JSONItem, DataList, DataItem diff --git a/tabtoxlsx.py b/tabtoxlsx.py index 06a6073..d693091 100755 --- a/tabtoxlsx.py +++ b/tabtoxlsx.py @@ -11,7 +11,7 @@ """ __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" import logging from typing import TYPE_CHECKING, cast, Union, Dict, List, Any, Sequence, Iterable, Optional diff --git a/tabxlsx.py b/tabxlsx.py index 6fd05d5..8abc591 100755 --- a/tabxlsx.py +++ b/tabxlsx.py @@ -6,7 +6,7 @@ If the input contains only one table then it is used, otherwise specify which should be printed.""" __copyright__ = "(C) 2023-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" from typing import Union, List, Dict, cast, Tuple, Optional, TextIO, Iterable, NamedTuple, Mapping, TypeVar, Generic, Iterator from collections import OrderedDict diff --git a/tabxlsx.tests.py b/tabxlsx.tests.py index dbb2afe..6a2a6e4 100644 --- a/tabxlsx.tests.py +++ b/tabxlsx.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.6.3352" +__version__ = "1.6.3361" from tabxlsx import print_tabtotext, print_tablist, CellValue, StrToTime, StrToDate from tabxlsx import tabtoXLSX, tablistfileXLSX, tablistfile, tablistmap, tablistfor diff --git a/timerange.py b/timerange.py index 04b730e..f2e5903 100755 --- a/timerange.py +++ b/timerange.py @@ -5,7 +5,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.8.3352" +__version__ = "0.8.3361" from typing import Union, Optional, Tuple diff --git a/timerange.tests.py b/timerange.tests.py index a105e05..95d5496 100755 --- a/timerange.tests.py +++ b/timerange.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.8.3352" +__version__ = "0.8.3361" import timerange as zeit from typing import Optional, cast diff --git a/timetrack.py b/timetrack.py index e0fe367..5ca3480 100755 --- a/timetrack.py +++ b/timetrack.py @@ -2,7 +2,7 @@ """ frontend to run other modules in the system """ __copyright__ = "(C) 2019-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.2.3352" +__version__ = "0.2.3361" from typing import Optional, Union, Dict, List, Tuple, Iterable, cast diff --git a/timetrack.tests.py b/timetrack.tests.py index 762d8fd..7f8d8b3 100755 --- a/timetrack.tests.py +++ b/timetrack.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2019-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.2.3352" +__version__ = "0.2.3361" import timetrack as track from typing import Optional diff --git a/zeit2jira.py b/zeit2jira.py index 7336d27..0f5b21e 100755 --- a/zeit2jira.py +++ b/zeit2jira.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" from typing import Optional, Union, Dict, List, Tuple, Iterable, Iterator, cast, NamedTuple diff --git a/zeit2jira.tests.py b/zeit2jira.tests.py index a4ed4d6..d4b45ae 100755 --- a/zeit2jira.tests.py +++ b/zeit2jira.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2022-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.4.3352" +__version__ = "0.4.3361" import tabtotext import jira2data_api_mockup as jira_api_mockup diff --git a/zeit2json.py b/zeit2json.py index 799fd9a..278bd3d 100755 --- a/zeit2json.py +++ b/zeit2json.py @@ -10,7 +10,7 @@ """ __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.6.3352" +__version__ = "0.6.3361" from typing import List, Dict, Union, Optional, Sequence, TextIO, Iterator, cast diff --git a/zeit2json.tests.py b/zeit2json.tests.py index 1191bf7..d4a7682 100755 --- a/zeit2json.tests.py +++ b/zeit2json.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2017-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "0.6.3352" +__version__ = "0.6.3361" import zeit2json as zeit from typing import Optional diff --git a/zeit2odoo.py b/zeit2odoo.py index 0386397..6313f16 100755 --- a/zeit2odoo.py +++ b/zeit2odoo.py @@ -4,7 +4,7 @@ """ __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" from typing import Optional, Union, Dict, List, Tuple, cast, NamedTuple diff --git a/zeit2odoo.tests.py b/zeit2odoo.tests.py index 58a04e7..be84e24 100755 --- a/zeit2odoo.tests.py +++ b/zeit2odoo.tests.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 __copyright__ = "(C) 2021-2024 Guido Draheim, licensed under the Apache License 2.0""" -__version__ = "1.1.3352" +__version__ = "1.1.3361" import tabtotext import odoo2data_api_mockup as odoo_api_mockup