-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge dev branch #300
Merge dev branch #300
Conversation
Partially masked arrays are not well supported, and required elaborate workaround for pretty printing. Here we use a structured array type, and represent "fixed" bounds with np.nan instead of masking. I.e. non is interpreted as the same as negative or positive infinity, unless both bound are nan, which indicates a fixed parameter.
A normal masked column using structured numpy arrays and nan for both bounds when fixed now suffices.
Use importlib.resources instead of pkg_resources (from setuptools)
Standardize units (extended)
Fitter API and make test cases work
Power Drude and Gaussian
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #300 +/- ##
==========================================
+ Coverage 64.30% 64.98% +0.67%
==========================================
Files 14 16 +2
Lines 1073 1068 -5
==========================================
+ Hits 690 694 +4
+ Misses 383 374 -9 ☔ View full report in Codecov by Sentry. |
Merge the
dev
branch, which has been used to develop new units and bounds treatment, and introduce the newFitter
API.