Skip to content

Commit 20f46d5

Browse files
committed
Update stable and dev version
Update stable and dev version
1 parent 442a452 commit 20f46d5

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

je_auto_control/utils/generate_report/generate_json_report.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import json
22
from threading import Lock
3+
from typing import Dict
34

45
from je_auto_control.utils.exception.exception_tags import cant_generate_json_report
56
from je_auto_control.utils.exception.exceptions import AutoControlGenerateJsonReportException
67
from je_auto_control.utils.logging.loggin_instance import auto_control_logger
78
from je_auto_control.utils.test_record.record_test_class import test_record_instance
89

910

10-
def generate_json() -> tuple[dict[str, dict[str, str]], dict[str, dict[str, str]]]:
11+
def generate_json() -> tuple[Dict[str, Dict[str, str]], Dict[str, dict[str, str]]]:
1112
auto_control_logger.info("generate_json")
1213
"""
1314
:return: two dict {success_dict}, {failure_dict}

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.145"
8+
name = "je_auto_control_dev"
9+
version = "0.0.84"
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.83"
8+
name = "je_auto_control"
9+
version = "0.0.146"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]

0 commit comments

Comments
 (0)