Skip to content

Commit 6c4f252

Browse files
committed
Bump
1 parent 29a309e commit 6c4f252

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

aiogram_cli/develop/_resolver.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ class LoadError(Exception):
1010

1111

1212
def resolve_import(*, target: str, possible_names: set[str] | None = None) -> Any:
13+
if possible_names is None:
14+
possible_names = set()
15+
1316
module_name, _, target_name = target.partition(":")
1417
try:
1518
module = importlib.import_module(module_name)

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ authors = [
1616
classifiers = [
1717
"Development Status :: 4 - Beta",
1818
"License :: OSI Approved :: MIT License",
19-
"Programming Language :: Python :: 3.7",
20-
"Programming Language :: Python :: 3.8",
2119
"Programming Language :: Python :: 3.9",
2220
"Programming Language :: Python :: 3.10",
2321
"Programming Language :: Python :: 3.11",
@@ -28,11 +26,11 @@ classifiers = [
2826
"Topic :: Utilities",
2927
]
3028
dependencies = [
31-
"click~=8.1.6",
29+
"click~=8.1.7",
3230
"click-plugins~=1.1.1",
3331
"colorama~=0.4.6",
34-
"aiogram~=3.0.0rc1",
35-
"watchfiles~=0.19.0",
32+
"aiogram~=3.0",
33+
"watchfiles~=0.20.0",
3634
]
3735

3836
[project.urls]

0 commit comments

Comments
 (0)