Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.0.13 #18

Merged
merged 3 commits into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Run mypy
shell: bash
run: mypy cantok --strict --implicit-reexport
run: mypy cantok --strict

- name: Run ruff
shell: bash
Expand Down
12 changes: 6 additions & 6 deletions cantok/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from cantok.tokens.abstract_token import AbstractToken # noqa: F401
from cantok.tokens.simple_token import SimpleToken # noqa: F401
from cantok.tokens.condition_token import ConditionToken # noqa: F401
from cantok.tokens.counter_token import CounterToken # noqa: F401
from cantok.tokens.timeout_token import TimeoutToken
from cantok.tokens.abstract_token import AbstractToken as AbstractToken # noqa: F401
from cantok.tokens.simple_token import SimpleToken as SimpleToken # noqa: F401
from cantok.tokens.condition_token import ConditionToken as ConditionToken # noqa: F401
from cantok.tokens.counter_token import CounterToken as CounterToken # noqa: F401
from cantok.tokens.timeout_token import TimeoutToken as TimeoutToken

from cantok.errors import CancellationError, ConditionCancellationError, CounterCancellationError, TimeoutCancellationError # noqa: F401
from cantok.errors import CancellationError as CancellationError, ConditionCancellationError as ConditionCancellationError, CounterCancellationError as CounterCancellationError, TimeoutCancellationError as TimeoutCancellationError # noqa: F401


TimeOutToken = TimeoutToken
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cantok"
version = "0.0.12"
version = "0.0.13"
authors = [
{ name="Evgeniy Blinov", email="zheni-b@yandex.ru" },
]
Expand Down
Loading