remove currrent_date from generated files

This commit is contained in:
Arnav Sacheti
2025-12-31 07:55:44 +00:00
parent 51a71daa79
commit 8cc4b838a3
5 changed files with 2 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "peakrdl-busdecoder"
version = "0.6.3"
version = "0.6.4"
requires-python = ">=3.10"
dependencies = [
"jinja2~=3.1",

View File

@@ -1,5 +1,4 @@
import os
from datetime import datetime
from importlib.metadata import version
from pathlib import Path
from typing import TYPE_CHECKING, Any, TypedDict
@@ -115,7 +114,6 @@ class BusDecoderExporter:
# Build Jinja template context
context = { # type: ignore
"current_date": datetime.now().strftime("%Y-%m-%d"),
"version": version("peakrdl-busdecoder"),
"cpuif": self.cpuif,
"cpuif_decode": DecodeLogicGenerator,

View File

@@ -3,7 +3,6 @@
// Description: CPU Interface Bus Decoder
// Author: PeakRDL-BusDecoder
// License: LGPL-3.0
// Date: {{current_date}}
// Version: {{version}}
// Links:
// - https://github.com/arnavsacheti/PeakRDL-BusDecoder

View File

@@ -3,7 +3,6 @@
// Description: CPU Interface Bus Decoder Package
// Author: PeakRDL-BusDecoder
// License: LGPL-3.0
// Date: {{current_date}}
// Version: {{version}}
// Links:
// - https://github.com/arnavsacheti/PeakRDL-BusDecoder

2
uv.lock generated
View File

@@ -608,7 +608,7 @@ wheels = [
[[package]]
name = "peakrdl-busdecoder"
version = "0.6.3"
version = "0.6.4"
source = { editable = "." }
dependencies = [
{ name = "jinja2" },