Skip to content

Commit

Permalink
Versions => 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fritchman committed May 24, 2024
1 parent 482dd12 commit d5fc882
Showing 8 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions SampleSitePdks/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "sitepdks"
description = "PDK Installations on THIS Machine"
version = "6.0.0rc0" # VLSIR_VERSION
version = "6.0.0" # VLSIR_VERSION
dependencies = [
"hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"sky130-hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"gf180-hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"asap7-hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"hdl21>=6.0.0,<7", # VLSIR_VERSION
"sky130-hdl21>=6.0.0,<7", # VLSIR_VERSION
"gf180-hdl21>=6.0.0,<7", # VLSIR_VERSION
"asap7-hdl21>=6.0.0,<7", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [{ name = "Dan Fritchman", email = "[email protected]" }]
2 changes: 1 addition & 1 deletion hdl21/__init__.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
# Hdl21 Hardware Description Library
"""

__version__ = "6.0.0rc0" # VLSIR_VERSION
__version__ = "6.0.0" # VLSIR_VERSION

# Internal (python) module aliases, overridden by names such as the `module` decorator function.
from . import module as _module_module
2 changes: 1 addition & 1 deletion hdl21/tests/test_hdl21.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@


def test_version():
assert h.__version__ == "6.0.0rc0" # VLSIR_VERSION
assert h.__version__ == "6.0.0" # VLSIR_VERSION


def test_module1():
4 changes: 2 additions & 2 deletions pdks/Asap7/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "asap7-hdl21"
description = "ASAP7 PDK Package for Hdl21"
version = "6.0.0rc0" # VLSIR_VERSION
version = "6.0.0" # VLSIR_VERSION
dependencies = [
"hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"hdl21>=6.0.0,<7", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [{ name = "Dan Fritchman", email = "[email protected]" }]
4 changes: 2 additions & 2 deletions pdks/Gf180/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "gf180-hdl21"
description="Global Foundries 180nm MCU PDK Package for Hdl21"
version = "6.0.0rc0" # VLSIR_VERSION
version = "6.0.0" # VLSIR_VERSION
dependencies = [
"hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"hdl21>=6.0.0,<7", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [
2 changes: 1 addition & 1 deletion pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "{{ cookiecutter.pypi_name }}"
description = "{{ cookiecutter.pdk_name }} PDK Package for Hdl21"
version = "{{cookiecutter.version}}"
dependencies = [
"hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"hdl21>=6.0.0,<7", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"

4 changes: 2 additions & 2 deletions pdks/Sky130/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "sky130-hdl21"
description="SkyWater 130nm PDK Package for Hdl21"
version = "6.0.0rc0" # VLSIR_VERSION
version = "6.0.0" # VLSIR_VERSION
dependencies = [
"hdl21>=6.0.0rc0,<7", # VLSIR_VERSION
"hdl21>=6.0.0,<7", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "hdl21"
description = "Hardware Description Library"
version = "6.0.0rc0" # VLSIR_VERSION
version = "6.0.0" # VLSIR_VERSION
dependencies = [
"vlsir>=6.0.0rc0,<7", # VLSIR_VERSION
"vlsirtools>=6.0.0rc0,<7", # VLSIR_VERSION
"vlsir>=6.0.0,<7", # VLSIR_VERSION
"vlsirtools>=6.0.0,<7", # VLSIR_VERSION
"pydantic>=1.9.0,<2.7",
]
requires-python = ">=3.7, <3.13"

0 comments on commit d5fc882

Please sign in to comment.