PyLTSpice 5.3.2__tar.gz → 5.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. {pyltspice-5.3.2 → pyltspice-5.4.0}/PKG-INFO +18 -5
  2. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice.egg-info/PKG-INFO +18 -5
  3. pyltspice-5.4.0/PyLTSpice.egg-info/requires.txt +1 -0
  4. {pyltspice-5.3.2 → pyltspice-5.4.0}/README.md +16 -3
  5. {pyltspice-5.3.2 → pyltspice-5.4.0}/pyproject.toml +2 -2
  6. pyltspice-5.3.2/PyLTSpice.egg-info/requires.txt +0 -1
  7. {pyltspice-5.3.2 → pyltspice-5.4.0}/LICENSE +0 -0
  8. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/Histogram.py +0 -0
  9. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/LTSteps.py +0 -0
  10. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/__init__.py +0 -0
  11. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/editor/__init__.py +0 -0
  12. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/editor/asc_editor.py +0 -0
  13. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/editor/spice_editor.py +0 -0
  14. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/log/__init__.py +0 -0
  15. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/log/logfile_data.py +0 -0
  16. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/log/ltsteps.py +0 -0
  17. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/log/semi_dev_op_reader.py +0 -0
  18. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/raw/__init__.py +0 -0
  19. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/raw/raw_classes.py +0 -0
  20. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/raw/raw_read.py +0 -0
  21. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/raw/raw_write.py +0 -0
  22. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/rawplot.py +0 -0
  23. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/run_server.py +0 -0
  24. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/__init__.py +0 -0
  25. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/ltspice_simulator.py +0 -0
  26. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/process_callback.py +0 -0
  27. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/sim_batch.py +0 -0
  28. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/sim_runner.py +0 -0
  29. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/sim_stepping.py +0 -0
  30. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/tookit/montecarlo.py +0 -0
  31. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/sim/tookit/worst_case.py +0 -0
  32. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/utils/detect_encoding.py +0 -0
  33. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice/utils/sweep_iterators.py +0 -0
  34. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice.egg-info/SOURCES.txt +0 -0
  35. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice.egg-info/dependency_links.txt +0 -0
  36. {pyltspice-5.3.2 → pyltspice-5.4.0}/PyLTSpice.egg-info/top_level.txt +0 -0
  37. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/ltsteps_example.py +0 -0
  38. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/raw_plotting.py +0 -0
  39. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/raw_read_example.py +0 -0
  40. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/raw_write_example.py +0 -0
  41. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/run_montecarlo.py +0 -0
  42. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/run_worst_case.py +0 -0
  43. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sim_runner_asc_example.py +0 -0
  44. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sim_runner_callback_example.py +0 -0
  45. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sim_runner_callback_process_example.py +0 -0
  46. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sim_runner_example.py +0 -0
  47. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sim_stepper_example.py +0 -0
  48. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/spice_editor_example.py +0 -0
  49. {pyltspice-5.3.2 → pyltspice-5.4.0}/examples/sub_circuit_asc_edits.py +0 -0
  50. {pyltspice-5.3.2 → pyltspice-5.4.0}/setup.cfg +0 -0
  51. {pyltspice-5.3.2 → pyltspice-5.4.0}/unittests/sweep_iterators_unittest.py +0 -0
  52. {pyltspice-5.3.2 → pyltspice-5.4.0}/unittests/test_asc_editor.py +0 -0
  53. {pyltspice-5.3.2 → pyltspice-5.4.0}/unittests/test_pyltspice.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyLTSpice
3
- Version: 5.3.2
3
+ Version: 5.4.0
4
4
  Summary: A set of tools to Automate LTSpice simulations
5
5
  Author-email: Nuno Brum <me@nunobrum.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -688,7 +688,7 @@ Classifier: Operating System :: OS Independent
688
688
  Requires-Python: >=3.8
689
689
  Description-Content-Type: text/markdown
690
690
  License-File: LICENSE
691
- Requires-Dist: spicelib>=1.2.1
691
+ Requires-Dist: spicelib>=1.3.1
692
692
 
693
693
  # README #
694
694
 
@@ -1145,11 +1145,24 @@ _Make sure to initialize the root logger before importing the library to be able
1145
1145
 
1146
1146
  ## To whom do I talk to? ##
1147
1147
 
1148
- * Tools website : [https://www.nunobrum.com/pyltspice.html](https://www.nunobrum.com/pyltspice.html)
1149
- * Repo owner : [me@nunobrum.com](mailto:me@nunobrum.com)
1150
- * Alternative contact : [nuno.brum@gmail.com](mailto:nuno.brum@gmail.com)
1148
+ For support and improvement requests please open an Issue in [GitHub spicelib issues](https://github.com/nunobrum/spicelib/issues)
1151
1149
 
1152
1150
  ## History ##
1151
+ * Version 5.4.0
1152
+ * Adding possibility of manipulating parameters on sub-circuits
1153
+ * Supporting subcircuit names with dots.
1154
+ * Overall documentation improvements (thanks @hb020)
1155
+ * Major improvement in Documentation
1156
+ * Introduced a read-only property that blocks libraries from being updated.
1157
+ * Support for LTspice log files with the option : expanded netlist
1158
+ * Supporting library symbols using BLOCK primitive
1159
+ * Improved unittest on the .ASC hierarchical design
1160
+ * SimRunner simulation iterator only returns successful simulations in order to simplify error management
1161
+ * In QschEditor, the replacement of unique dot instructions (ex: .TRAN .AC .NOISE) is only done if the existing instruction is not commented.
1162
+ * RunTask.get_results() now returns None if a callback function is provided and the simulation has failed.
1163
+ * BigFix: Inclusion of encrypted libraries would crash
1164
+ * Bugfix: Prefix were case sensitive in SpiceEditor
1165
+ * Bugfix: Parsing netlists with extensions other than .net didn't work properly
1153
1166
  * Version 5.3.2
1154
1167
  * Correction on the readthedocs webhook configuration
1155
1168
  * Alignement with the spicelib 1.2.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyLTSpice
3
- Version: 5.3.2
3
+ Version: 5.4.0
4
4
  Summary: A set of tools to Automate LTSpice simulations
5
5
  Author-email: Nuno Brum <me@nunobrum.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -688,7 +688,7 @@ Classifier: Operating System :: OS Independent
688
688
  Requires-Python: >=3.8
689
689
  Description-Content-Type: text/markdown
690
690
  License-File: LICENSE
691
- Requires-Dist: spicelib>=1.2.1
691
+ Requires-Dist: spicelib>=1.3.1
692
692
 
693
693
  # README #
694
694
 
@@ -1145,11 +1145,24 @@ _Make sure to initialize the root logger before importing the library to be able
1145
1145
 
1146
1146
  ## To whom do I talk to? ##
1147
1147
 
1148
- * Tools website : [https://www.nunobrum.com/pyltspice.html](https://www.nunobrum.com/pyltspice.html)
1149
- * Repo owner : [me@nunobrum.com](mailto:me@nunobrum.com)
1150
- * Alternative contact : [nuno.brum@gmail.com](mailto:nuno.brum@gmail.com)
1148
+ For support and improvement requests please open an Issue in [GitHub spicelib issues](https://github.com/nunobrum/spicelib/issues)
1151
1149
 
1152
1150
  ## History ##
1151
+ * Version 5.4.0
1152
+ * Adding possibility of manipulating parameters on sub-circuits
1153
+ * Supporting subcircuit names with dots.
1154
+ * Overall documentation improvements (thanks @hb020)
1155
+ * Major improvement in Documentation
1156
+ * Introduced a read-only property that blocks libraries from being updated.
1157
+ * Support for LTspice log files with the option : expanded netlist
1158
+ * Supporting library symbols using BLOCK primitive
1159
+ * Improved unittest on the .ASC hierarchical design
1160
+ * SimRunner simulation iterator only returns successful simulations in order to simplify error management
1161
+ * In QschEditor, the replacement of unique dot instructions (ex: .TRAN .AC .NOISE) is only done if the existing instruction is not commented.
1162
+ * RunTask.get_results() now returns None if a callback function is provided and the simulation has failed.
1163
+ * BigFix: Inclusion of encrypted libraries would crash
1164
+ * Bugfix: Prefix were case sensitive in SpiceEditor
1165
+ * Bugfix: Parsing netlists with extensions other than .net didn't work properly
1153
1166
  * Version 5.3.2
1154
1167
  * Correction on the readthedocs webhook configuration
1155
1168
  * Alignement with the spicelib 1.2.1
@@ -0,0 +1 @@
1
+ spicelib>=1.3.1
@@ -453,11 +453,24 @@ _Make sure to initialize the root logger before importing the library to be able
453
453
 
454
454
  ## To whom do I talk to? ##
455
455
 
456
- * Tools website : [https://www.nunobrum.com/pyltspice.html](https://www.nunobrum.com/pyltspice.html)
457
- * Repo owner : [me@nunobrum.com](mailto:me@nunobrum.com)
458
- * Alternative contact : [nuno.brum@gmail.com](mailto:nuno.brum@gmail.com)
456
+ For support and improvement requests please open an Issue in [GitHub spicelib issues](https://github.com/nunobrum/spicelib/issues)
459
457
 
460
458
  ## History ##
459
+ * Version 5.4.0
460
+ * Adding possibility of manipulating parameters on sub-circuits
461
+ * Supporting subcircuit names with dots.
462
+ * Overall documentation improvements (thanks @hb020)
463
+ * Major improvement in Documentation
464
+ * Introduced a read-only property that blocks libraries from being updated.
465
+ * Support for LTspice log files with the option : expanded netlist
466
+ * Supporting library symbols using BLOCK primitive
467
+ * Improved unittest on the .ASC hierarchical design
468
+ * SimRunner simulation iterator only returns successful simulations in order to simplify error management
469
+ * In QschEditor, the replacement of unique dot instructions (ex: .TRAN .AC .NOISE) is only done if the existing instruction is not commented.
470
+ * RunTask.get_results() now returns None if a callback function is provided and the simulation has failed.
471
+ * BigFix: Inclusion of encrypted libraries would crash
472
+ * Bugfix: Prefix were case sensitive in SpiceEditor
473
+ * Bugfix: Parsing netlists with extensions other than .net didn't work properly
461
474
  * Version 5.3.2
462
475
  * Correction on the readthedocs webhook configuration
463
476
  * Alignement with the spicelib 1.2.1
@@ -6,7 +6,7 @@ requires = [
6
6
  build-backend = "setuptools.build_meta"
7
7
  [project]
8
8
  name = "PyLTSpice"
9
- version = "5.3.2"
9
+ version = "5.4.0"
10
10
  authors = [
11
11
  { name="Nuno Brum", email="me@nunobrum.com" },
12
12
  ]
@@ -15,7 +15,7 @@ readme = "README.md"
15
15
  license = { file="LICENSE" }
16
16
  requires-python = ">=3.8"
17
17
  dependencies = [
18
- "spicelib>=1.2.1",
18
+ "spicelib>=1.3.1",
19
19
  ]
20
20
  classifiers=[
21
21
  "Programming Language :: Python :: 3",
@@ -1 +0,0 @@
1
- spicelib>=1.2.1
File without changes
File without changes