From 4ea9a0892d6bb8280046ce55a91c10cfc20739c1 Mon Sep 17 00:00:00 2001 From: Joaquin Matres <4514346+joamatab@users.noreply.github.com> Date: Thu, 24 Aug 2023 08:48:50 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=207.3.4=20=E2=86=92=207.3.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .devcontainer/Dockerfile | 2 +- README.md | 2 +- conda/construct.yaml | 2 +- conda/constructor/Miniforge3/install.bat | 2 +- conda/constructor/Miniforge3/install.sh | 2 +- conda/install.bat | 2 +- conda/install.sh | 2 +- docs/notebooks/08_pdk.py | 2 +- gdsfactory/__init__.py | 2 +- gdsfactory/cli.py | 2 +- gdsfactory/config.py | 2 +- gdsfactory/generic_tech/klayout/grain.xml | 2 +- gdsfactory/generic_tech/klayout/pymacros/set_menus.lym | 2 +- pyproject.toml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 764bf16751..859f59ced7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 7.3.4 +current_version = 7.3.5 commit = True tag = True diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1fad63e18a..0749955795 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1 +1 @@ -FROM joamatab/gdsfactory:7.3.4 +FROM joamatab/gdsfactory:7.3.5 diff --git a/README.md b/README.md index 05094ac8af..fac9fd04f6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gdsfactory 7.3.4 +# gdsfactory 7.3.5 [![docs](https://github.com/gdsfactory/gdsfactory/actions/workflows/pages.yml/badge.svg)](https://gdsfactory.github.io/gdsfactory/) [![PyPI](https://img.shields.io/pypi/v/gdsfactory)](https://pypi.org/project/gdsfactory/) diff --git a/conda/construct.yaml b/conda/construct.yaml index c081487740..733ea0739c 100644 --- a/conda/construct.yaml +++ b/conda/construct.yaml @@ -1,5 +1,5 @@ name: gdsfactory -version: 7.3.4 +version: 7.3.5 installer_type: all channels: diff --git a/conda/constructor/Miniforge3/install.bat b/conda/constructor/Miniforge3/install.bat index da951ddb79..0a540f412c 100644 --- a/conda/constructor/Miniforge3/install.bat +++ b/conda/constructor/Miniforge3/install.bat @@ -2,7 +2,7 @@ cd ..\condabin call conda activate -call pip install gdsfactory[cad]==7.3.4 gplugins +call pip install gdsfactory[cad]==7.3.5 gplugins call conda install -c conda-forge slepc4py=*=complex* -y call conda install -c conda-forge git -y call pip install femwell diff --git a/conda/constructor/Miniforge3/install.sh b/conda/constructor/Miniforge3/install.sh index e43bfd00c3..3f5ac7b23a 100755 --- a/conda/constructor/Miniforge3/install.sh +++ b/conda/constructor/Miniforge3/install.sh @@ -3,7 +3,7 @@ source "$PREFIX/etc/profile.d/conda.sh" conda activate "$PREFIX" -python -m pip install gdsfactory==7.3.4 gplugins +python -m pip install gdsfactory==7.3.5 gplugins # conda install -c conda-forge slepc4py=*=complex* -y diff --git a/conda/install.bat b/conda/install.bat index 19bfd85234..ce039b911c 100644 --- a/conda/install.bat +++ b/conda/install.bat @@ -6,7 +6,7 @@ call conda activate call pip install sax jax sklearn call pip install "jaxlib[cuda111]" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver -call pip install gdsfactory[cad]==7.3.4 gplugins +call pip install gdsfactory[cad]==7.3.5 gplugins call conda install -c conda-forge slepc4py=*=complex* -y call conda install -c conda-forge git -y diff --git a/conda/install.sh b/conda/install.sh index 353b75a8cc..e46151b8ff 100755 --- a/conda/install.sh +++ b/conda/install.sh @@ -1,7 +1,7 @@ #!/bin/bash conda install -c conda-forge slepc4py=*=complex* -y -pip install sklearn gdsfactory==7.3.4 gplugins +pip install sklearn gdsfactory==7.3.5 gplugins [ ! -d $HOME/Desktop/gdsfactory ] && git clone https://github.com/gdsfactory/gdsfactory.git $HOME/Desktop/gdsfactory # if [[ $(uname -s) == Linux ]]; then diff --git a/docs/notebooks/08_pdk.py b/docs/notebooks/08_pdk.py index 22559d23e6..bd60016412 100644 --- a/docs/notebooks/08_pdk.py +++ b/docs/notebooks/08_pdk.py @@ -250,7 +250,7 @@ class Config: # # gdsfactory is **not** backwards compatible, which means that the package will keep improving and evolving. # -# 1. To make your work stable you should install a specific version and [pin the version](https://martin-thoma.com/python-requirements/) in your `requirements.txt` or `pyproject.toml` as `gdsfactory==7.3.4` replacing `7.3.4` by whatever version you end up using. +# 1. To make your work stable you should install a specific version and [pin the version](https://martin-thoma.com/python-requirements/) in your `requirements.txt` or `pyproject.toml` as `gdsfactory==7.3.5` replacing `7.3.5` by whatever version you end up using. # 2. Before you upgrade gdsfactory to a newer version make sure your tests pass to make sure that things behave as expected # # diff --git a/gdsfactory/__init__.py b/gdsfactory/__init__.py index 3539635a6d..9e3cbe54f0 100644 --- a/gdsfactory/__init__.py +++ b/gdsfactory/__init__.py @@ -144,4 +144,4 @@ ) -__version__ = "7.3.4" +__version__ = "7.3.5" diff --git a/gdsfactory/cli.py b/gdsfactory/cli.py index df3b086001..e81142746e 100644 --- a/gdsfactory/cli.py +++ b/gdsfactory/cli.py @@ -8,7 +8,7 @@ app = typer.Typer() -VERSION = "7.3.4" +VERSION = "7.3.5" @app.command() diff --git a/gdsfactory/config.py b/gdsfactory/config.py index ba45879671..74a8fdeb30 100644 --- a/gdsfactory/config.py +++ b/gdsfactory/config.py @@ -24,7 +24,7 @@ from rich.console import Console from rich.table import Table -__version__ = "7.3.4" +__version__ = "7.3.5" PathType = str | pathlib.Path home = pathlib.Path.home() diff --git a/gdsfactory/generic_tech/klayout/grain.xml b/gdsfactory/generic_tech/klayout/grain.xml index 52f2844559..94dd871dbe 100644 --- a/gdsfactory/generic_tech/klayout/grain.xml +++ b/gdsfactory/generic_tech/klayout/grain.xml @@ -3,7 +3,7 @@ gdsfactory false - 7.3.4 + 7.3.5 gdsfactory EDA tool to layout integrated circuits diff --git a/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym b/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym index 6cbf0b3b17..9694152f72 100644 --- a/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym +++ b/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym @@ -17,7 +17,7 @@ import pya -__version__ = "7.3.4" +__version__ = "7.3.5" def set_menu(): diff --git a/pyproject.toml b/pyproject.toml index b156d15efe..6efd866373 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ license = {file = "LICENSE"} name = "gdsfactory" readme = "README.md" requires-python = ">=3.10" -version = "7.3.4" +version = "7.3.5" [project.optional-dependencies] cad = [