Skip to content

Commit 9664348

Browse files
authored
Merge pull request #103 from Integration-Automation/dev
Update both version
2 parents 9e8cfd9 + d32b5d0 commit 9664348

File tree

8 files changed

+18
-17
lines changed

8 files changed

+18
-17
lines changed

.github/workflows/stable_python3_10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313

1414
jobs:
15-
build_dev_version:
15+
build_stable_version:
1616
runs-on: windows-latest
1717

1818
steps:

.github/workflows/stable_python3_11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313

1414
jobs:
15-
build_dev_version:
15+
build_stable_version:
1616
runs-on: windows-latest
1717

1818
steps:

.github/workflows/stable_python3_12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313

1414
jobs:
15-
build_dev_version:
15+
build_stable_version:
1616
runs-on: windows-latest
1717

1818
steps:

automation_ide/automation_editor_ui/menu/menu_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from typing import TYPE_CHECKING
44

5-
from je_editor import BrowserWidget
5+
from je_editor import MainBrowserWidget
66

77
if TYPE_CHECKING:
88
from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor
@@ -11,6 +11,6 @@
1111
def open_web_browser(
1212
automation_editor_instance: AutomationEditor, url: str, tab_name: str) -> None:
1313
automation_editor_instance.tab_widget.addTab(
14-
BrowserWidget(start_url=url),
14+
MainBrowserWidget(start_url=url),
1515
f"{tab_name}{automation_editor_instance.tab_widget.count()}"
1616
)

dev_requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
build
22
twine
3+
PySide6
34
je-api-testka
45
je-load-density
56
je-auto-control
@@ -8,6 +9,6 @@ je-mail-thunder
89
automation_ide_dev
910
sphinx
1011
sphinx-rtd-theme
11-
PySide6==6.10.0
12+
PySide6
1213
auto-py-to-exe
1314
test_pioneer

pyproject.toml

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

77
[project]
8-
name = "automation_ide"
9-
version = "0.0.48"
8+
name = "automation_ide_dev"
9+
version = "0.0.56"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
1313
description = "AutomationEditor for multi automation"
1414
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
17-
"je-editor", "je_auto_control", "je_web_runner",
17+
"je_editor_dev", "je_auto_control", "je_web_runner",
1818
"je_load_density", "je_api_testka", "je-mail-thunder",
1919
"automation-file", "PySide6==6.10.0", "test_pioneer"
2020
]
@@ -35,5 +35,6 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
3535
file = "README.md"
3636
content-type = "text/markdown"
3737

38+
3839
[tool.setuptools.packages]
3940
find = { namespaces = false }

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
automation_ide
2-
PySide6==6.10.0
2+
PySide6

dev.toml renamed to stable.toml

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

77
[project]
8-
name = "automation_ide_dev"
9-
version = "0.0.54"
8+
name = "automation_ide"
9+
version = "0.0.49"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
@@ -35,6 +35,5 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
3535
file = "README.md"
3636
content-type = "text/markdown"
3737

38-
3938
[tool.setuptools.packages]
4039
find = { namespaces = false }

0 commit comments

Comments
 (0)