Skip to content

Commit

Permalink
Remove typing.Literal import (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
priitlatt authored Jul 2, 2024
1 parent 34515b7 commit 283ce7e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 0.53.2
-------------

This is a bugfix release to resolve a regression that was introduced in version 0.53.1. [PR #413](https://github.com/codemagic-ci-cd/cli-tools/pull/413)

**Bugfixes**
- Remove type-checking import statement that is not available on Python 3.7.

Version 0.53.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "codemagic-cli-tools"
version = "0.53.1"
version = "0.53.2"
description = "CLI tools used in Codemagic builds"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/codemagic/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "codemagic-cli-tools"
__description__ = "CLI tools used in Codemagic builds"
__version__ = "0.53.1.dev"
__version__ = "0.53.2.dev"
__url__ = "https://github.com/codemagic-ci-cd/cli-tools"
__licence__ = "GNU General Public License v3.0"
3 changes: 2 additions & 1 deletion src/codemagic/models/certificate_p12_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from typing import TYPE_CHECKING
from typing import AnyStr
from typing import Generator
from typing import Literal
from typing import Optional
from typing import Sequence
from typing import Union
Expand All @@ -23,6 +22,8 @@
from codemagic.mixins import StringConverterMixin

if TYPE_CHECKING:
from typing_extensions import Literal

from .certificate import Certificate
from .private_key import PrivateKey

Expand Down

0 comments on commit 283ce7e

Please sign in to comment.