Remove automatically_register_units
#85
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
brainunit
package, focusing on version updates, string representation improvements, unit registration, and testing enhancements. The most important changes are summarized below:Version update:
brainunit
package from0.0.3
to0.0.4
inbrainunit/__init__.py
.String representation improvements:
__repr__
and__str__
methods inbrainunit/_base.py
to handle cases wherescale
is0
, improving the readability of unit representations. [1] [2]Unit registration:
brainunit/_unit_common.py
anddev/units_template.py
to prevent unintended unit registrations. [1] [2]Class instantiation:
with_data
method inbrainunit/sparse/_csr.py
to useself.__class__
for creating new instances, ensuring compatibility with subclasses.Testing enhancements:
test_matvec_non_unit
inbrainunit/sparse/_csr_test.py
to verify the correctness of matrix-vector multiplication for non-unit data.