Skip to content

Commit 35d5ae6

Browse files
committed
v2.1.1242
1 parent 386b05e commit 35d5ae6

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "docker_systemctl_replacement"
9-
version = "2.1.1153"
9+
version = "2.1.1242"
1010
description = "allows to deploy to systemd-controlled containers without starting an actual systemd daemon"
1111
readme = { "file" = "share/README.md", content-type = "text/markdown" }
1212
license = "EUPL-1.2"

systemctl2/systemctl3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from types import TracebackType
2828

2929
__copyright__: str = "(C) 2016-2025 Guido U. Draheim, licensed under the EUPL"
30-
__version__: str = "2.1.1153"
30+
__version__: str = "2.1.1242"
3131

3232
import logging
3333
logg: logging.Logger = logging.getLogger("systemctl")

tests/buildtests4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
""" Testcases for docker-systemctl-replacement functionality """
77

88
__copyright__ = "(C) Guido Draheim, licensed under the EUPL"""
9-
__version__ = "2.1.1153"
9+
__version__ = "2.1.1242"
1010

1111
# NOTE:
1212
# The testcases 1000...4999 are using a --root=subdir environment

tests/dockertests3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pylint: disable=missing-function-docstring,unused-variable,unused-argument,unspecified-encoding,redefined-outer-name,using-constant-test,invalid-name
77
# pylint: disable=fixme,consider-using-with,consider-using-get,condition-evals-to-constant,chained-comparison
88
__copyright__ = "(C) Guido Draheim, licensed under the EUPL"""
9-
__version__ = "2.1.1153"
9+
__version__ = "2.1.1242"
1010

1111
from typing import List, Tuple, Generator, Iterator, Union, Optional, TextIO, Mapping
1212

tests/localtests2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pylint: disable=missing-function-docstring,unused-variable,unused-argument,unspecified-encoding,redefined-outer-name,using-constant-test,invalid-name
77
# pylint: disable=fixme,consider-using-with,condition-evals-to-constant,chained-comparison
88
__copyright__ = "(C) Guido Draheim, licensed under the EUPL"""
9-
__version__ = "2.1.1153"
9+
__version__ = "2.1.1242"
1010

1111
from typing import List, Tuple, Generator, Iterator, Union, Optional, TextIO, Mapping
1212

tests/setuptests5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pylint: disable=missing-function-docstring,unused-variable,unused-argument,unspecified-encoding,redefined-outer-name,using-constant-test,invalid-name
77
# pylint: disable=fixme,consider-using-with,consider-using-get,condition-evals-to-constant,chained-comparison
88
__copyright__ = "(C) Guido Draheim, licensed under the EUPL"""
9-
__version__ = "2.1.1153"
9+
__version__ = "2.1.1242"
1010

1111
from typing import List, Tuple, Iterator, Union, Optional, TextIO, Mapping
1212

tests/unittests1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
""" testing functions directly in strip_python3 module """
55

66
__copyright__ = "(C) Guido Draheim, licensed under the EUPL"""
7-
__version__ = "2.1.1153"
7+
__version__ = "2.1.1242"
88

99
import sys
1010
import unittest

0 commit comments

Comments
 (0)