-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: crash with iterable variables in type-lax mode (#581)
## Misc. Enhancements/Bugfixes * `openlane.config.Variable` * Fixed an issue when strict type-checking is disabled where empty strings would crash iterable objects. ## Tool Updates * Fixed mypy to 1.9.0 to match NixOS 24.05. * Checked `poetry.lock` into version control to improve reproducibility.
- Loading branch information
Showing
8 changed files
with
1,864 additions
and
12 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "openlane" | ||
version = "2.1.9" | ||
version = "2.1.10" | ||
description = "An infrastructure for implementing chip design flows" | ||
authors = ["Efabless Corporation and Contributors <[email protected]>"] | ||
readme = "Readme.md" | ||
|
@@ -35,7 +35,7 @@ flake8 = ">=4" | |
flake8-no-implicit-concat = "0.3.3" | ||
flake8-pytest-style = "*" | ||
|
||
mypy = "*" | ||
mypy = ">=1.9.0,<1.10.0" | ||
lxml-stubs = "*" | ||
types-urllib3 = "*" | ||
types-typed-ast = "*" | ||
|
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