-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthias Koefferlein
committed
Jul 5, 2023
1 parent
6b1aa88
commit 2ed27ff
Showing
6 changed files
with
104 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
klayout (0.28.10-1) unstable; urgency=low | ||
|
||
* New features and bugfixes | ||
- See changelog | ||
|
||
-- Matthias Köfferlein <[email protected]> Wed, 05 Jul 2023 18:37:13 +0200 | ||
|
||
klayout (0.28.9-1) unstable; urgency=low | ||
|
||
* New features and bugfixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash -e | ||
|
||
# This script regenerates the Python stubs from the sources | ||
|
||
# clean up | ||
rm -rf build dist | ||
|
||
python3 setup.py build | ||
python3 setup.py bdist_wheel | ||
python3 -m venv create python3-venv-make_stubs | ||
|
||
. python3-venv-make_stubs/bin/activate | ||
|
||
pip3 install ./dist/*.whl | ||
|
||
./scripts/make_stubs.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters