Skip to content

Commit a8eb410

Browse files
authored
No user generated UUID (#33)
* Remove the user generated UUID from the manifest file. * Bump version.
1 parent e5cba25 commit a8eb410

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyscript"
7-
version = "0.2.3"
7+
version = "0.2.4"
88
description = "Command Line Interface for PyScript"
99
authors = [
1010
"Matt Kramer <[email protected]>",

src/pyscript/_generator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import datetime
22
from pathlib import Path
33
from typing import Optional
4-
from uuid import uuid4
54

65
import jinja2
76
import toml
@@ -45,7 +44,6 @@ def create_project(
4544
"author_email": author_email,
4645
"version": f"{datetime.date.today().year}.1.1",
4746
"created_on": datetime.datetime.now(),
48-
"id": str(uuid4()),
4947
}
5048
app_dir = Path(".") / app_name
5149
app_dir.mkdir()

tests/test_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def test_create_project(tmp_cwd: Path, is_not_none: Any) -> None:
3232
"author_name": "A.Coder",
3333
"author_email": "[email protected]",
3434
"created_on": is_not_none,
35-
"id": is_not_none,
3635
"version": is_not_none,
3736
}
3837

0 commit comments

Comments
 (0)