Skip to content

Commit 172bc53

Browse files
committed
Update stable and dev version
Update stable and dev version * Remove ReEdgeGPT GUI
1 parent 3f44eb3 commit 172bc53

File tree

4 files changed

+20
-22
lines changed

4 files changed

+20
-22
lines changed

stable.toml renamed to dev.toml

Lines changed: 6 additions & 7 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 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_editor"
9-
version = "0.0.197"
8+
name = "je_editor_dev"
9+
version = "0.0.218"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
1313
description = "JEditor is basic but powerful editor include GPT"
1414
requires-python = ">=3.9"
1515
license = { text = "MIT" }
1616
dependencies = [
17-
"PySide6==6.8.2.1", "qt-material", "yapf", "frontengine", "pycodestyle", "jedi", "qtconsole", "re-edge-gpt[gui]"
17+
"PySide6==6.8.2.1", "qt-material", "yapf", "frontengine", "pycodestyle", "jedi", "qtconsole"
1818
]
1919
classifiers = [
2020
"Programming Language :: Python :: 3.9",
@@ -26,7 +26,6 @@ classifiers = [
2626
"Operating System :: OS Independent"
2727
]
2828

29-
3029
[project.urls]
3130
Homepage = "https://github.com/JE-Chen/je_editor"
3231
Documentation = "https://je-editor.readthedocs.io/en/latest/"

je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from je_editor.pyside_ui.browser.browser_widget import BrowserWidget
88
from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
99
from je_editor.pyside_ui.main_ui.ipython_widget.rich_jupyter import IpythonWidget
10-
from re_edge_gpt.ui.chat.main_ui import ChatMainUI
1110

1211
from je_editor.utils.logging.loggin_instance import jeditor_logger
1312

@@ -107,10 +106,3 @@ def add_ipython_tab(ui_we_want_to_set: EditorMain):
107106
f"{language_wrapper.language_word_dict.get('tab_menu_ipython_tab_name')} "
108107
f"{ui_we_want_to_set.tab_widget.count()}")
109108

110-
111-
def add_re_edge_gpt_tab(ui_we_want_to_set: EditorMain):
112-
jeditor_logger.info(f"build_tab_menu.py add_re_edge_gpt_tab ui_we_want_to_set: {ui_we_want_to_set}")
113-
ui_we_want_to_set.tab_widget.addTab(
114-
ChatMainUI(),
115-
f"{language_wrapper.language_word_dict.get('tab_name_re_edge_gpt')} "
116-
f"{ui_we_want_to_set.tab_widget.count()}")

pyproject.toml

Lines changed: 6 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_editor_dev"
9-
version = "0.0.217"
8+
name = "je_editor"
9+
version = "0.0.198"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
@@ -26,6 +26,7 @@ classifiers = [
2626
"Operating System :: OS Independent"
2727
]
2828

29+
2930
[project.urls]
3031
Homepage = "https://github.com/JE-Chen/je_editor"
3132
Documentation = "https://je-editor.readthedocs.io/en/latest/"

requirements.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
PySide6==6.8.2.1
1+
PySide6
22
sphinx
3-
auto-py-to-exe
3+
auto-py-to-exe
4+
pycodestyle
5+
jedi
6+
frontengine
7+
yapf
8+
ipython
9+
qtconsole

0 commit comments

Comments
 (0)