From 0254abd394c1972f376344e58db4290d546741f1 Mon Sep 17 00:00:00 2001 From: Dan Fritchman Date: Fri, 24 May 2024 10:45:07 -0700 Subject: [PATCH] Versions => 7.0.0.dev1 --- SampleSitePdks/pyproject.toml | 19 ++++++------------- hdl21/__init__.py | 2 +- hdl21/tests/test_hdl21.py | 2 +- pdks/Asap7/pyproject.toml | 13 +++---------- pdks/Gf180/pyproject.toml | 13 +++---------- .../{{cookiecutter.repo_name}}/pyproject.toml | 11 ++--------- pdks/Sky130/pyproject.toml | 13 +++---------- pyproject.toml | 15 ++++----------- 8 files changed, 23 insertions(+), 65 deletions(-) diff --git a/SampleSitePdks/pyproject.toml b/SampleSitePdks/pyproject.toml index a456452..cacf172 100644 --- a/SampleSitePdks/pyproject.toml +++ b/SampleSitePdks/pyproject.toml @@ -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 = "dan@fritch.mn" }] @@ -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" diff --git a/hdl21/__init__.py b/hdl21/__init__.py index 4e5e9f1..fe7a6a3 100644 --- a/hdl21/__init__.py +++ b/hdl21/__init__.py @@ -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 diff --git a/hdl21/tests/test_hdl21.py b/hdl21/tests/test_hdl21.py index 007bf55..35f25c7 100644 --- a/hdl21/tests/test_hdl21.py +++ b/hdl21/tests/test_hdl21.py @@ -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(): diff --git a/pdks/Asap7/pyproject.toml b/pdks/Asap7/pyproject.toml index c656152..15bd71b 100644 --- a/pdks/Asap7/pyproject.toml +++ b/pdks/Asap7/pyproject.toml @@ -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 = "dan@fritch.mn" }] @@ -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" diff --git a/pdks/Gf180/pyproject.toml b/pdks/Gf180/pyproject.toml index 4e848ee..df26d8d 100644 --- a/pdks/Gf180/pyproject.toml +++ b/pdks/Gf180/pyproject.toml @@ -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 = [ @@ -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" diff --git a/pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml b/pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml index 20633ad..78cc712 100644 --- a/pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml +++ b/pdks/PdkTemplate/{{cookiecutter.repo_name}}/pyproject.toml @@ -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" @@ -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"] diff --git a/pdks/Sky130/pyproject.toml b/pdks/Sky130/pyproject.toml index e3ece68..7bb7347 100644 --- a/pdks/Sky130/pyproject.toml +++ b/pdks/Sky130/pyproject.toml @@ -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 = [ @@ -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" diff --git a/pyproject.toml b/pyproject.toml index b5636b7..2bd6fb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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"