Skip to content

Commit

Permalink
Bump version: 7.3.4 → 7.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Aug 24, 2023
1 parent 6fde379 commit 4ea9a08
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.3.4
current_version = 7.3.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM joamatab/gdsfactory:7.3.4
FROM joamatab/gdsfactory:7.3.5
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion conda/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gdsfactory
version: 7.3.4
version: 7.3.5
installer_type: all

channels:
Expand Down
2 changes: 1 addition & 1 deletion conda/constructor/Miniforge3/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion conda/constructor/Miniforge3/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion conda/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conda/install.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/08_pdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
#
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@
)


__version__ = "7.3.4"
__version__ = "7.3.5"
2 changes: 1 addition & 1 deletion gdsfactory/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

app = typer.Typer()

VERSION = "7.3.4"
VERSION = "7.3.5"


@app.command()
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/grain.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>gdsfactory</name>
<token/>
<hidden>false</hidden>
<version>7.3.4</version>
<version>7.3.5</version>
<api-version/>
<title>gdsfactory</title>
<doc>EDA tool to layout integrated circuits</doc>
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/pymacros/set_menus.lym
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<text>
import pya

__version__ = "7.3.4"
__version__ = "7.3.5"


def set_menu():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 4ea9a08

Please sign in to comment.