Skip to content

Commit eb9bd1a

Browse files
committed
v1.1.1134
1 parent 033c003 commit eb9bd1a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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 = "strip_python3"
9-
version = "1.1.1132"
9+
version = "1.1.1134"
1010
description = "easy way to remove python3 typehints and to transform sources to older python compatibility"
1111
readme = { "file" = "tmp/README.MD", content-type = "text/markdown" }
1212
license = "MIT"

src/strip_python3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__copyright__ = "(C) 2025 Guido Draheim, licensed under MIT License"
88
__author__ = "Guido U. Draheim"
9-
__version__ = "1.1.1132"
9+
__version__ = "1.1.1134"
1010

1111
from typing import Set, List, Dict, Optional, Union, Tuple, cast, NamedTuple, TypeVar, Deque, Iterable, TYPE_CHECKING
1212
import sys

tests/exectests3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# pylint: disable=missing-class-docstring,missing-function-docstring,unused-variable,unused-argument,unspecified-encoding,redefined-outer-name,using-constant-test,invalid-name
66
# pylint: disable=fixme,duplicate-code,consider-using-with,too-many-public-methods,too-many-arguments,too-many-positional-arguments
77
__copyright__ = "(C) Guido Draheim, licensed under the MIT license"""
8-
__version__ = "1.1.1132"
8+
__version__ = "1.1.1134"
99

1010

1111
from typing import List, Iterator, Union, Optional, TextIO, Mapping, Iterable

tests/transformertests2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__copyright__ = "(C) 2025 Guido Draheim, licensed under MIT License"
99
__author__ = "Guido U. Draheim"
10-
__version__ = "1.1.1132"
10+
__version__ = "1.1.1134"
1111

1212
from typing import List, Union, Optional, Iterator, Iterable, NamedTuple, Mapping
1313
import unittest

tests/unittests1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
__copyright__ = "(C) 2025 Guido Draheim, licensed under MIT License"
77
__author__ = "Guido U. Draheim"
8-
__version__ = "1.1.1132"
8+
__version__ = "1.1.1134"
99

1010
from typing import cast
1111
import sys

0 commit comments

Comments
 (0)