From cb3c645ad4f82cb03b0112b70e32add587670742 Mon Sep 17 00:00:00 2001 From: joamatab <4514346+joamatab@users.noreply.github.com> Date: Tue, 28 Mar 2023 09:10:34 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=206.72.5=20=E2=86=92=206.72.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .devcontainer/Dockerfile | 2 +- .github/workflows/release.yml | 8 ++++---- README.md | 2 +- conda/construct.yaml | 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/klive.lym | 2 +- gdsfactory/generic_tech/klayout/pymacros/set_menus.lym | 2 +- pyproject.toml | 2 +- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a474425749..bbf2edcae5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.72.5 +current_version = 6.72.6 commit = True tag = True diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b96e70b4af..028f3c09f2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1 +1 @@ -FROM joamatab/gdsfactory:6.72.5 +FROM joamatab/gdsfactory:6.72.6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41db148049..94d177e282 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,9 +58,9 @@ jobs: with: fail_on_unmatched_files: false files: | - conda/gdsfactory-6.72.5-Linux-x86_64.sh - conda/gdsfactory-6.72.5-Windows-x86_64.exe - conda/gdsfactory-6.72.5-MacOSX-x86_64.pkg + conda/gdsfactory-6.72.6-Linux-x86_64.sh + conda/gdsfactory-6.72.6-Windows-x86_64.exe + conda/gdsfactory-6.72.6-MacOSX-x86_64.pkg release_docker: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') runs-on: ubuntu-latest @@ -79,5 +79,5 @@ jobs: uses: docker/build-push-action@v4 with: push: true - tags: joamatab/gdsfactory:latest,joamatab/gdsfactory:6.72.5 + tags: joamatab/gdsfactory:latest,joamatab/gdsfactory:6.72.6 file: .devcontainer/Dockerfile.dev diff --git a/README.md b/README.md index f8a8f47abe..457c8c45b3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gdsfactory 6.72.5 +# gdsfactory 6.72.6 [![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 88638a4697..9c0324109b 100644 --- a/conda/construct.yaml +++ b/conda/construct.yaml @@ -1,5 +1,5 @@ name: gdsfactory -version: 6.72.5 +version: 6.72.6 installer_type: all channels: diff --git a/conda/install.bat b/conda/install.bat index a4b6692def..206c720aa8 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[full,gmsh,tidy3d,devsim,meow,ray,database]==6.72.5 +call pip install gdsfactory[full,gmsh,tidy3d,devsim,meow,ray,database]==6.72.6 call gf install klayout-integration call conda install -c conda-forge slepc4py=*=complex* -y diff --git a/conda/install.sh b/conda/install.sh index b56f314135..e07b8101dd 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[full,gmsh,tidy3d,devsim,meow,sax,ray,database,femwell]==6.72.5 +pip install sklearn gdsfactory[full,gmsh,tidy3d,devsim,meow,sax,ray,database,femwell]==6.72.6 gf install klayout-integration [ ! -d $HOME/Desktop/gdsfactory ] && git clone https://github.com/gdsfactory/gdsfactory.git $HOME/Desktop/gdsfactory diff --git a/docs/notebooks/08_pdk.py b/docs/notebooks/08_pdk.py index faa0022387..9e7c846c10 100644 --- a/docs/notebooks/08_pdk.py +++ b/docs/notebooks/08_pdk.py @@ -292,7 +292,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==6.72.5` replacing `6.72.5` 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==6.72.6` replacing `6.72.6` 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 be2b1ae627..4c64951574 100644 --- a/gdsfactory/__init__.py +++ b/gdsfactory/__init__.py @@ -145,4 +145,4 @@ def __getattr__(name): "write_cells", "PATH", ) -__version__ = "6.72.5" +__version__ = "6.72.6" diff --git a/gdsfactory/cli.py b/gdsfactory/cli.py index 239e2f1e21..ce3dcc7fe6 100644 --- a/gdsfactory/cli.py +++ b/gdsfactory/cli.py @@ -23,7 +23,7 @@ except ImportError: import click -VERSION = "6.72.5" +VERSION = "6.72.6" LAYER_LABEL = LAYER.LABEL diff --git a/gdsfactory/config.py b/gdsfactory/config.py index bb15340392..265a23f8fc 100644 --- a/gdsfactory/config.py +++ b/gdsfactory/config.py @@ -33,7 +33,7 @@ from rich.console import Console from rich.table import Table -__version__ = "6.72.5" +__version__ = "6.72.6" PathType = Union[str, pathlib.Path] home = pathlib.Path.home() diff --git a/gdsfactory/generic_tech/klayout/grain.xml b/gdsfactory/generic_tech/klayout/grain.xml index 21d2facad8..f7a0788eff 100644 --- a/gdsfactory/generic_tech/klayout/grain.xml +++ b/gdsfactory/generic_tech/klayout/grain.xml @@ -3,7 +3,7 @@ gdsfactory false - 6.72.5 + 6.72.6 gdsfactory EDA tool to layout integrated circuits diff --git a/gdsfactory/generic_tech/klayout/pymacros/klive.lym b/gdsfactory/generic_tech/klayout/pymacros/klive.lym index 42690607c2..c4a3c24a59 100644 --- a/gdsfactory/generic_tech/klayout/pymacros/klive.lym +++ b/gdsfactory/generic_tech/klayout/pymacros/klive.lym @@ -146,7 +146,7 @@ class MyServer(pya.QTcpServer): # Start the server server = MyServer() path = pathlib.Path(__file__).parent.absolute() -print("klive 6.72.5 is running from {} inside klayout {} with python {}".format(str(path), klayout_version, sys.version)) +print("klive 6.72.6 is running from {} inside klayout {} with python {}".format(str(path), klayout_version, sys.version)) diff --git a/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym b/gdsfactory/generic_tech/klayout/pymacros/set_menus.lym index 8a89e858ac..7083a3d6e7 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__ = "6.72.5" +__version__ = "6.72.6" def set_menu(): diff --git a/pyproject.toml b/pyproject.toml index 221b7c4ddc..cca89d1f8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ] -version = "6.72.5" +version = "6.72.6" authors = [ {name = "gdsfactory community", email = "contact@gdsfactory.com"}, ]