Skip to content

Commit

Permalink
Versions => 7.0.0.dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fritchman committed May 24, 2024
1 parent 0b8b855 commit 0254abd
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 65 deletions.
19 changes: 6 additions & 13 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 = "7.0.0.dev0" # VLSIR_VERSION
version = "7.0.0.dev1" # VLSIR_VERSION
dependencies = [
"hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"sky130-hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"gf180-hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"asap7-hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"hdl21>=7.0.0.dev1", # VLSIR_VERSION
"sky130-hdl21>=7.0.0.dev1", # VLSIR_VERSION
"gf180-hdl21>=7.0.0.dev1", # VLSIR_VERSION
"asap7-hdl21>=7.0.0.dev1", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [{ name = "Dan Fritchman", email = "[email protected]" }]
Expand All @@ -25,14 +25,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Expand Down
2 changes: 1 addition & 1 deletion hdl21/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Hdl21 Hardware Description Library
"""

__version__ = "7.0.0.dev0" # VLSIR_VERSION
__version__ = "7.0.0.dev1" # VLSIR_VERSION

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


def test_version():
assert h.__version__ == "7.0.0.dev0" # VLSIR_VERSION
assert h.__version__ == "7.0.0.dev1" # VLSIR_VERSION


def test_module1():
Expand Down
13 changes: 3 additions & 10 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 = "7.0.0.dev0" # VLSIR_VERSION
version = "7.0.0.dev1" # VLSIR_VERSION
dependencies = [
"hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"hdl21>=7.0.0.dev1", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [{ name = "Dan Fritchman", email = "[email protected]" }]
Expand All @@ -23,14 +23,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Expand Down
13 changes: 3 additions & 10 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 = "7.0.0.dev0" # VLSIR_VERSION
version = "7.0.0.dev1" # VLSIR_VERSION
dependencies = [
"hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"hdl21>=7.0.0.dev1", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [
Expand All @@ -25,14 +25,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Expand Down
11 changes: 2 additions & 9 deletions pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "{{ cookiecutter.pypi_name }}"
description = "{{ cookiecutter.pdk_name }} PDK Package for Hdl21"
version = "{{cookiecutter.version}}"
dependencies = [
"hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"hdl21>=7.0.0.dev1", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"

Expand All @@ -17,14 +17,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[build-system]
requires = ["flit_core >=3.2,<4"]
Expand Down
13 changes: 3 additions & 10 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 = "7.0.0.dev0" # VLSIR_VERSION
version = "7.0.0.dev1" # VLSIR_VERSION
dependencies = [
"hdl21>=7.0.0.dev0,<7", # VLSIR_VERSION
"hdl21>=7.0.0.dev1", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [
Expand All @@ -25,14 +25,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Expand Down
15 changes: 4 additions & 11 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 = "7.0.0.dev0" # VLSIR_VERSION
version = "7.0.0.dev1" # VLSIR_VERSION
dependencies = [
"vlsir>=7.0.0.dev0,<7", # VLSIR_VERSION
"vlsirtools>=7.0.0.dev0,<7", # VLSIR_VERSION
"vlsir>=7.0.0.dev1", # VLSIR_VERSION
"vlsirtools>=7.0.0.dev1", # VLSIR_VERSION
"pydantic>=1.9.0,<2.7",
]
requires-python = ">=3.7, <3.13"
Expand All @@ -29,14 +29,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = [
"pytest==7.1",
"coverage",
"pytest-cov",
"pre-commit==2.20",
"black==22.6",
"flit",
]
dev = ["vlsirdev"]

[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Expand Down

0 comments on commit 0254abd

Please sign in to comment.