scoring-matrices
Advanced tools
+8
-1
@@ -9,5 +9,12 @@ # Changelog | ||
| ## [Unreleased] | ||
| [Unreleased]: https://github.com/althonos/scoring-matrices/compare/v0.3.2...HEAD | ||
| [Unreleased]: https://github.com/althonos/scoring-matrices/compare/v0.3.3...HEAD | ||
| ## [v0.3.3] - 2025-08-13 | ||
| [v0.3.3]: https://github.com/althonos/scoring-matrices/compare/v0.3.2...v0.3.3 | ||
| ### Fixed | ||
| - Memory leak caused by `ScoringMatrix` not deallocating data on object deletion. | ||
| ## [v0.3.2] - 2025-06-16 | ||
@@ -14,0 +21,0 @@ [v0.3.2]: https://github.com/althonos/scoring-matrices/compare/v0.3.1...v0.3.2 |
+1
-1
| Metadata-Version: 2.2 | ||
| Name: scoring-matrices | ||
| Version: 0.3.2 | ||
| Version: 0.3.3 | ||
| Summary: Dependency free, Cython-compatible scoring matrices to use with biological sequences. | ||
@@ -5,0 +5,0 @@ Keywords: bioinformatics,sequence,substitution,matrix,score |
+1
-1
@@ -7,3 +7,3 @@ [build-system] | ||
| name = "scoring-matrices" | ||
| version = "0.3.2" | ||
| version = "0.3.3" | ||
| description = "Dependency free, Cython-compatible scoring matrices to use with biological sequences." | ||
@@ -10,0 +10,0 @@ readme = "README.md" |
@@ -190,5 +190,11 @@ # distutils: language = c | ||
| self._matrix = NULL | ||
| self._alphabet = NULL | ||
| self._size = 0 | ||
| self._shape[0] = self._shape[1] = 0 | ||
| def __dealloc__(self): | ||
| free(self._data) | ||
| free(self._matrix) | ||
| free(self._alphabet) | ||
| def __init__( | ||
@@ -195,0 +201,0 @@ self, |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
255143
0.13%