mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-16 12:33:41 +02:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
3ce36dd2ff
3 changed files with 4 additions and 2 deletions
|
@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file.
|
||||||
- The fit functions were renamed to `least_squares` and `total_least_squares`.
|
- The fit functions were renamed to `least_squares` and `total_least_squares`.
|
||||||
- The output of the fit functions is now a dedicated results class which keeps track of all relevant information
|
- The output of the fit functions is now a dedicated results class which keeps track of all relevant information
|
||||||
- The fit functions can now deal with provided covariance matrices.
|
- The fit functions can now deal with provided covariance matrices.
|
||||||
|
- `covariance` can now operate on a list or array of `Obs` and returns a matrix
|
||||||
- The convention for the fit range in the Corr class has been changed.
|
- The convention for the fit range in the Corr class has been changed.
|
||||||
- Various method of the `Corr` class were renamed
|
- Various method of the `Corr` class were renamed
|
||||||
- `Obs.print` was renamed to `Obs.details` and the output was improved.
|
- `Obs.print` was renamed to `Obs.details` and the output was improved.
|
||||||
|
@ -36,6 +37,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
- The function `plot_corrs` was deprecated as all its functionality is now contained within `Corr.show`
|
- The function `plot_corrs` was deprecated as all its functionality is now contained within `Corr.show`
|
||||||
|
- `fits.covariance_matrix` was removed as it is now redundant with the functionality of `covariance`
|
||||||
- The kwarg `bias_correction` in `derived_observable` was removed
|
- The kwarg `bias_correction` in `derived_observable` was removed
|
||||||
- Obs no longer have an attribute `e_Q`
|
- Obs no longer have an attribute `e_Q`
|
||||||
- Removed `fits.fit_exp`
|
- Removed `fits.fit_exp`
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "2.0.0-rc.2+dev"
|
__version__ = "2.0.0-rc.2"
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(name='pyerrors',
|
setup(name='pyerrors',
|
||||||
version='2.0.0-rc.2+dev',
|
version='2.0.0-rc.2',
|
||||||
description='Error analysis for lattice QCD',
|
description='Error analysis for lattice QCD',
|
||||||
author='Fabian Joswig',
|
author='Fabian Joswig',
|
||||||
author_email='fabian.joswig@ed.ac.uk',
|
author_email='fabian.joswig@ed.ac.uk',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue