Skip to content

Commit 0b1e468

Browse files
committed
Update stable and dev version
Fix an cli error
1 parent a0ca559 commit 0b1e468

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

stable.toml renamed to dev.toml

Lines changed: 5 additions & 5 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_auto_control"
9-
version = "0.0.131"
8+
name = "je_auto_control_dev"
9+
version = "0.0.68"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]

je_auto_control/utils/project/create_project_structure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def create_template(parent_name: str, project_path: str = None) -> None:
5858
lock.release()
5959

6060

61-
def create_project_dir(parent_name: str, project_path: str = None) -> None:
61+
def create_project_dir(project_path: str = None, parent_name: str = "AutoControl") -> None:
6262
if project_path is None:
6363
project_path = getcwd()
6464
create_dir(project_path + "/" + parent_name + "/keyword")

pyproject.toml

Lines changed: 5 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_auto_control_dev"
9-
version = "0.0.67"
8+
name = "je_auto_control"
9+
version = "0.0.133"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from je_auto_control import create_project_dir
22

3-
create_project_dir("My Test Project")
3+
create_project_dir()

0 commit comments

Comments
 (0)