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/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_requirements.txt b/dev_requirements.txt index 30a4665..c6d322f 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,6 @@ je-mail-thunder automation_ide_dev sphinx sphinx-rtd-theme -PySide6==6.10.0 +PySide6 auto-py-to-exe test_pioneer \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index dc490c5..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.48" +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 b82a107..41ad177 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ automation_ide -PySide6==6.10.0 +PySide6 diff --git a/dev.toml b/stable.toml similarity index 91% rename from dev.toml rename to stable.toml index 4ec3f89..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.54" +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 }