Skip to content

Commit e6c3906

Browse files
committed
Update stable and dev
Update stable and dev
1 parent 100eb8c commit e6c3906

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

je_auto_control/utils/package_manager/package_manager_class.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from importlib.util import find_spec
33
from inspect import getmembers, isfunction, isbuiltin, isclass
44
from sys import stderr
5-
from typing import Union, Callable
5+
from typing import Union, Callable, Dict
66

77
from je_auto_control.utils.logging.loggin_instance import auto_control_logger
88

@@ -15,7 +15,7 @@ def __init__(self):
1515
self.executor = None
1616
self.callback_executor = None
1717

18-
def check_package(self, package: str) -> Union[None, dict[str, Callable]]:
18+
def check_package(self, package: str) -> Union[None, Dict[str, Callable]]:
1919
"""
2020
:param package: package to check exists or not
2121
:return: package if find else None

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Rename to build stable version
2-
# This is stable version
1+
# Rename to build dev version
2+
# This is dev version
33
[build-system]
4-
requires = ["setuptools>=61.0"]
4+
requires = ["setuptools"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_auto_control"
9-
version = "0.0.148"
8+
name = "je_auto_control_dev"
9+
version = "0.0.87"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]

dev.toml renamed to stable.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Rename to build dev version
2-
# This is dev version
1+
# Rename to build stable version
2+
# This is stable version
33
[build-system]
4-
requires = ["setuptools"]
4+
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_auto_control_dev"
9-
version = "0.0.86"
8+
name = "je_auto_control"
9+
version = "0.0.149"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]

0 commit comments

Comments
 (0)