Skip to content

Commit d20782e

Browse files
authored
Merge pull request #165 from Integration-Automation/dev
Update both version
2 parents 08ca79a + 0aed6cd commit d20782e

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

stable.toml renamed to dev.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.208"
8+
name = "je_editor_dev"
9+
version = "0.0.230"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
@@ -23,11 +23,9 @@ classifiers = [
2323
"Environment :: Win32 (MS Windows)",
2424
"Environment :: MacOS X",
2525
"Environment :: X11 Applications",
26-
"License :: OSI Approved :: MIT License",
2726
"Operating System :: OS Independent"
2827
]
2928

30-
3129
[project.urls]
3230
Homepage = "https://github.com/JE-Chen/je_editor"
3331
Documentation = "https://je-editor.readthedocs.io/en/latest/"
@@ -37,5 +35,6 @@ Code = "https://github.com/JE-Chen/je_editor"
3735
file = "README.md"
3836
content-type = "text/markdown"
3937

38+
4039
[tool.setuptools.packages]
4140
find = { namespaces = false }

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PySide6==6.8.2.1
1+
PySide6==6.9.1
22
sphinx
33
twine
44
build

je_editor/utils/logging/loggin_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
logging.root.setLevel(logging.DEBUG)
55
jeditor_logger = logging.getLogger("JEditor")
6+
jeditor_logger.setLevel(logging.WARNING)
67
formatter = logging.Formatter('%(asctime)s | %(name)s | %(levelname)s | %(message)s')
78

8-
99
class JEditorLoggingHandler(RotatingFileHandler):
1010

1111
# redirect logging stderr output to queue

pyproject.toml

Lines changed: 7 additions & 6 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.228"
8+
name = "je_editor"
9+
version = "0.0.209"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
@@ -23,9 +23,11 @@ classifiers = [
2323
"Environment :: Win32 (MS Windows)",
2424
"Environment :: MacOS X",
2525
"Environment :: X11 Applications",
26+
"License :: OSI Approved :: MIT License",
2627
"Operating System :: OS Independent"
2728
]
2829

30+
2931
[project.urls]
3032
Homepage = "https://github.com/JE-Chen/je_editor"
3133
Documentation = "https://je-editor.readthedocs.io/en/latest/"
@@ -35,6 +37,5 @@ Code = "https://github.com/JE-Chen/je_editor"
3537
file = "README.md"
3638
content-type = "text/markdown"
3739

38-
3940
[tool.setuptools.packages]
4041
find = { namespaces = false }

0 commit comments

Comments
 (0)