Skip to content

No user generated UUID #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pyscript"
version = "0.2.3"
version = "0.2.4"
description = "Command Line Interface for PyScript"
authors = [
"Matt Kramer <[email protected]>",
Expand Down
2 changes: 0 additions & 2 deletions src/pyscript/_generator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import datetime
from pathlib import Path
from typing import Optional
from uuid import uuid4

import jinja2
import toml
Expand Down Expand Up @@ -45,7 +44,6 @@ def create_project(
"author_email": author_email,
"version": f"{datetime.date.today().year}.1.1",
"created_on": datetime.datetime.now(),
"id": str(uuid4()),
}
app_dir = Path(".") / app_name
app_dir.mkdir()
Expand Down
1 change: 0 additions & 1 deletion tests/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def test_create_project(tmp_cwd: Path, is_not_none: Any) -> None:
"author_name": "A.Coder",
"author_email": "[email protected]",
"created_on": is_not_none,
"id": is_not_none,
"version": is_not_none,
}

Expand Down