From 9e1603961f99f96fe4f76c61f5c3231412f13fac Mon Sep 17 00:00:00 2001 From: JE-Chen Date: Tue, 28 Oct 2025 12:00:13 +0800 Subject: [PATCH 1/3] Update both version * Fix import from error --- automation_ide/automation_editor_ui/menu/menu_utils.py | 4 ++-- dev.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/automation_ide/automation_editor_ui/menu/menu_utils.py b/automation_ide/automation_editor_ui/menu/menu_utils.py index acad10b..1f39498 100644 --- a/automation_ide/automation_editor_ui/menu/menu_utils.py +++ b/automation_ide/automation_editor_ui/menu/menu_utils.py @@ -2,7 +2,7 @@ from typing import TYPE_CHECKING -from je_editor import BrowserWidget +from je_editor import MainBrowserWidget if TYPE_CHECKING: from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor @@ -11,6 +11,6 @@ def open_web_browser( automation_editor_instance: AutomationEditor, url: str, tab_name: str) -> None: automation_editor_instance.tab_widget.addTab( - BrowserWidget(start_url=url), + MainBrowserWidget(start_url=url), f"{tab_name}{automation_editor_instance.tab_widget.count()}" ) diff --git a/dev.toml b/dev.toml index 4ec3f89..4cdf333 100644 --- a/dev.toml +++ b/dev.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "automation_ide_dev" -version = "0.0.54" +version = "0.0.55" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] diff --git a/pyproject.toml b/pyproject.toml index dc490c5..1e16fac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "automation_ide" -version = "0.0.48" +version = "0.0.49" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] From cda63ee3932ea5c7caa0bfc825244553f203859a Mon Sep 17 00:00:00 2001 From: JE-Chen Date: Tue, 28 Oct 2025 12:51:30 +0800 Subject: [PATCH 2/3] Update dev version * Fix actions jobs name * Edit requirements --- .github/workflows/stable_python3_10.yml | 2 +- .github/workflows/stable_python3_11.yml | 2 +- .github/workflows/stable_python3_12.yml | 2 +- dev_requirements.txt | 2 +- pyproject.toml | 11 ++++++----- requirements.txt | 2 +- dev.toml => stable.toml | 9 ++++----- 7 files changed, 15 insertions(+), 15 deletions(-) rename dev.toml => stable.toml (91%) diff --git a/.github/workflows/stable_python3_10.yml b/.github/workflows/stable_python3_10.yml index 9485811..9fae812 100644 --- a/.github/workflows/stable_python3_10.yml +++ b/.github/workflows/stable_python3_10.yml @@ -12,7 +12,7 @@ permissions: contents: read jobs: - build_dev_version: + build_stable_version: runs-on: windows-latest steps: diff --git a/.github/workflows/stable_python3_11.yml b/.github/workflows/stable_python3_11.yml index 4c85ed7..002b665 100644 --- a/.github/workflows/stable_python3_11.yml +++ b/.github/workflows/stable_python3_11.yml @@ -12,7 +12,7 @@ permissions: contents: read jobs: - build_dev_version: + build_stable_version: runs-on: windows-latest steps: diff --git a/.github/workflows/stable_python3_12.yml b/.github/workflows/stable_python3_12.yml index 685389b..442eb1b 100644 --- a/.github/workflows/stable_python3_12.yml +++ b/.github/workflows/stable_python3_12.yml @@ -12,7 +12,7 @@ permissions: contents: read jobs: - build_dev_version: + build_stable_version: runs-on: windows-latest steps: diff --git a/dev_requirements.txt b/dev_requirements.txt index 3950254..cdbceaa 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -1,5 +1,6 @@ build twine +PySide6 je-api-testka je-load-density je-auto-control @@ -8,6 +9,5 @@ je-mail-thunder automation_ide_dev sphinx sphinx-rtd-theme -PySide6==6.9.2 auto-py-to-exe test_pioneer \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 1e16fac..6817b06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ -# Rename to build stable version -# This is stable version +# Rename to dev version +# This is dev version [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] -name = "automation_ide" -version = "0.0.49" +name = "automation_ide_dev" +version = "0.0.56" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -14,7 +14,7 @@ description = "AutomationEditor for multi automation" requires-python = ">=3.10" license-files = ["LICENSE"] dependencies = [ - "je-editor", "je_auto_control", "je_web_runner", + "je_editor_dev", "je_auto_control", "je_web_runner", "je_load_density", "je_api_testka", "je-mail-thunder", "automation-file", "PySide6==6.10.0", "test_pioneer" ] @@ -35,5 +35,6 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor" file = "README.md" content-type = "text/markdown" + [tool.setuptools.packages] find = { namespaces = false } diff --git a/requirements.txt b/requirements.txt index 86f32bb..404f092 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ automation_ide -PySide6==6.9.2 +PySide diff --git a/dev.toml b/stable.toml similarity index 91% rename from dev.toml rename to stable.toml index 4cdf333..1e16fac 100644 --- a/dev.toml +++ b/stable.toml @@ -1,12 +1,12 @@ -# Rename to dev version -# This is dev version +# Rename to build stable version +# This is stable version [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] -name = "automation_ide_dev" -version = "0.0.55" +name = "automation_ide" +version = "0.0.49" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -35,6 +35,5 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor" file = "README.md" content-type = "text/markdown" - [tool.setuptools.packages] find = { namespaces = false } From e35d24b57c7bea1ad8b35a13d84b65338994db2e Mon Sep 17 00:00:00 2001 From: JE-Chen Date: Tue, 28 Oct 2025 12:56:29 +0800 Subject: [PATCH 3/3] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 404f092..41ad177 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ automation_ide -PySide +PySide6