Skip to content

Commit 3324615

Browse files
committed
Rename project to test pioneer
Rename project to test pioneer
1 parent ec66954 commit 3324615

File tree

78 files changed

+119
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+119
-90
lines changed

automation_ide/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

dev_requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
pip
12
build
23
twine
34
je-api-testka
@@ -8,4 +9,5 @@ je-mail-thunder
89
automation_ide_dev
910
sphinx
1011
sphinx-rtd-theme
11-
PySide6==6.7.3
12+
PySide6==6.8.1
13+
PyYAML

exe/start_automation_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from automation_ide import start_editor
1+
from test_pioneer import start_editor
22

33
start_editor()

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "automation_ide_dev"
8+
name = "test_pioneer_dev"
99
version = "0.0.38"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
@@ -16,7 +16,7 @@ license = { text = "MIT" }
1616
dependencies = [
1717
"je-editor", "je_auto_control", "je_web_runner",
1818
"je_load_density", "je_api_testka", "je-mail-thunder",
19-
"automation-file", "PySide6==6.8.1"
19+
"automation-file", "PySide6==6.8.1", "pip", "PyYAML"
2020
]
2121
classifiers = [
2222
"Programming Language :: Python :: 3.9",

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
pip
12
automation_ide
2-
PySide6==6.7.3
3+
PySide6==6.8.1
34
je_editor
4-
je_auto_control
5+
je_auto_control
6+
PyYAML

stable.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "automation_ide"
8+
name = "test_pioneer"
99
version = "0.0.35"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
@@ -16,7 +16,7 @@ license = { text = "MIT" }
1616
dependencies = [
1717
"je-editor", "je_auto_control", "je_web_runner",
1818
"je_load_density", "je_api_testka", "je-mail-thunder",
19-
"automation-file", "PySide6==6.8.1"
19+
"automation-file", "PySide6==6.8.1", "pip", "PyYAML"
2020
]
2121
classifiers = [
2222
"Programming Language :: Python :: 3.9",

test/unit_test/start_automation/extend_automation_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from PySide6.QtWidgets import QWidget, QGridLayout, QLineEdit, QPushButton, QLabel
22

3-
from automation_ide import start_editor, EDITOR_EXTEND_TAB
3+
from test_pioneer import start_editor, EDITOR_EXTEND_TAB
44

55

66
# You can use you own QWidget
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from automation_ide import start_editor
1+
from test_pioneer import start_editor
22
start_editor(debug_mode=True)

test_pioneer/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from test_pioneer.test_pioneer_editor_ui.editor_main.main_ui import AutomationEditor
2+
from test_pioneer.test_pioneer_editor_ui.editor_main.main_ui import EDITOR_EXTEND_TAB
3+
from test_pioneer.test_pioneer_editor_ui.editor_main.main_ui import start_editor
4+
5+
__all__ = [
6+
"start_editor", "AutomationEditor", "EDITOR_EXTEND_TAB"
7+
]

0 commit comments

Comments
 (0)