Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-10-13 11:09:59 +00:00
commit 6a6f31fb94
4 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [2.3.0] - 2022-10-13
### Added
- `least_squares` and `total_least_squares` fits now have an optional keyword argument `num_grad`. If this argument is set to `True` the error propagation of the fit is performed via numerical instead of automatic differentiation. This options allows for fits functions which contain special functions or which are not analytically known.
### Fixed
- Bug in `Corr.show` `comp` option fixed.
## [2.2.0] - 2022-08-01 ## [2.2.0] - 2022-08-01
### Added ### Added
- New submodule `input.pandas` added which adds the possibility to read and write pandas DataFrames containing `Obs` or `Corr` objects to csv files or SQLite databases. - New submodule `input.pandas` added which adds the possibility to read and write pandas DataFrames containing `Obs` or `Corr` objects to csv files or SQLite databases.

View file

@ -15,6 +15,7 @@ authors:
orcid: 'https://orcid.org/0000-0002-0955-9228' orcid: 'https://orcid.org/0000-0002-0955-9228'
- given-names: Justus T. - given-names: Justus T.
family-names: Kuhlmann family-names: Kuhlmann
orcid: 'https://orcid.org/0000-0001-5291-1939'
- given-names: Jan - given-names: Jan
family-names: Neuendorf family-names: Neuendorf
orcid: 'https://orcid.org/0000-0001-6177-7014' orcid: 'https://orcid.org/0000-0001-6177-7014'

View file

@ -1 +1 @@
__version__ = "2.3.0+dev" __version__ = "2.3.0"

View file

@ -35,6 +35,7 @@ setup(name='pyerrors',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Physics' 'Topic :: Scientific/Engineering :: Physics'
], ],
) )