Skip to content

Commit

Permalink
Merge branch 'master' of github.com:atait/klayout-gadgets
Browse files Browse the repository at this point in the history
  • Loading branch information
atait committed Mar 29, 2019
2 parents 6a97f18 + d83b9db commit 99fba58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ If you have the klayout python standalone, that is what you will get as "pya". T
#### Python packages
Right after `pip install mypack`, run `lygadgets_link mypack`, and it will show up to klayout's GSI. This creates a symlink from source files to the `~/.klayout/python` directory.

**As of v0.1.24**, this command can also trigger linking of other dependencies. The trigger list is a package attribute called `__lygadget_link__`, defined in `__init__`. Here is where you put pip dependencies:
**As of v0.1.25**, this command can also trigger linking of other dependencies. The trigger list is a package attribute called `__lygadget_link__`, defined in `__init__`. Here is where you put pip dependencies:

```python
# setup.py
Expand All @@ -95,7 +95,7 @@ Now, we *also* put them in `__init__.py`.

``` python
# lygadgets/__init__.py
__version__ = '0.1.24'
__version__ = '0.1.25'
__lygadget_link__ = ['future', 'xmltodict']

```
Expand Down
2 changes: 1 addition & 1 deletion lygadgets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.23'
__version__ = '0.1.24'
__lygadget_link__ = ['future', 'xmltodict']

from lygadgets.environment import pya, isGUI, isGSI, patch_environment, klayout_home
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def readme():


setup(name='lygadgets',
version='0.1.23',
version='0.1.24',
description='Tools to make klayout, the standalone, and python environments work better together',
long_description=readme(),
author='Alex Tait',
Expand Down

0 comments on commit 99fba58

Please sign in to comment.