-
Notifications
You must be signed in to change notification settings - Fork 60
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
Showing
3 changed files
with
19 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -453,11 +453,24 @@ _Make sure to initialize the root logger before importing the library to be able | |
|
||
## To whom do I talk to? ## | ||
|
||
* Tools website : [https://www.nunobrum.com/pyltspice.html](https://www.nunobrum.com/pyltspice.html) | ||
* Repo owner : [[email protected]](mailto:[email protected]) | ||
* Alternative contact : [[email protected]](mailto:[email protected]) | ||
For support and improvement requests please open an Issue in [GitHub spicelib issues](https://github.com/nunobrum/spicelib/issues) | ||
|
||
## History ## | ||
* Version 5.4.0 | ||
* Adding possibility of manipulating parameters on sub-circuits | ||
* Supporting subcircuit names with dots. | ||
* Overall documentation improvements (thanks @hb020) | ||
* Major improvement in Documentation | ||
* Introduced a read-only property that blocks libraries from being updated. | ||
* Support for LTspice log files with the option : expanded netlist | ||
* Supporting library symbols using BLOCK primitive | ||
* Improved unittest on the .ASC hierarchical design | ||
* SimRunner simulation iterator only returns successful simulations in order to simplify error management | ||
* In QschEditor, the replacement of unique dot instructions (ex: .TRAN .AC .NOISE) is only done if the existing instruction is not commented. | ||
* RunTask.get_results() now returns None if a callback function is provided and the simulation has failed. | ||
* BigFix: Inclusion of encrypted libraries would crash | ||
* Bugfix: Prefix were case sensitive in SpiceEditor | ||
* Bugfix: Parsing netlists with extensions other than .net didn't work properly | ||
* Version 5.3.2 | ||
* Correction on the readthedocs webhook configuration | ||
* Alignement with the spicelib 1.2.1 | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ requires = [ | |
build-backend = "setuptools.build_meta" | ||
[project] | ||
name = "PyLTSpice" | ||
version = "5.3.2" | ||
version = "5.4.0" | ||
authors = [ | ||
{ name="Nuno Brum", email="[email protected]" }, | ||
] | ||
|
@@ -15,7 +15,7 @@ readme = "README.md" | |
license = { file="LICENSE" } | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"spicelib>=1.2.1", | ||
"spicelib>=1.3.1", | ||
] | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
|