Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@

> See also: [https://github.com/Anselmoo/spectrafit/releases][1]

## v0.8.3 - v0.8.5

---

- Dependency and GitHub Action Updates

## v0.8.2

---

- Refactor buffer of the _covariance matrix_

## v0.8.1

---

- Updating all `raise` statements
- Add [prettier][17] to CI/CD workflow

## v0.8.0

---
Expand All @@ -20,7 +39,7 @@

---

- Maintance of the `SpectraFit` package
- Maintenance of the `SpectraFit` package

## v0.7.0

Expand Down Expand Up @@ -174,3 +193,4 @@
[14]: https://github.com/Anselmoo/spectrafit/blob/main/README.md
[15]: https://pypi.org/project/spectrafit/
[16]: https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.find_peaks.html
[17]: https://prettier.io
38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SpectraFit"
version = "0.8.4"
version = "0.8.5"
description = "Fast fitting of 2D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <[email protected]>"]
Expand Down Expand Up @@ -37,24 +37,24 @@ include = [
]
exclude = ["docs/", "tools/"]

[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
lmfit = "^1.0.2"
numpy = "^1.21.1"
pandas = "^1.3.0"
matplotlib = "^3.4.2"
seaborn = "^0.11.1"
scipy = "^1.7.0"
openpyxl = "^3.0.7"
toml = "^0.10.2"
PyYAML = "^6.0.0"
numdifftools = "^0.9.40"
tabulate = "^0.8.9"
statsmodels = "^0.13.1"
emcee = "^3.1.1"
dill = "^0.3.4"
corner = "^2.2.1"
tqdm = "^4.62.3"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
lmfit = "^1.0.2"
numpy = "^1.21.1"
pandas = "^1.3.0"
matplotlib = "^3.4.2"
seaborn = "^0.11.1"
scipy = "^1.7.0"
openpyxl = "^3.0.7"
toml = "^0.10.2"
PyYAML = "^6.0.0"
numdifftools = "^0.9.40"
tabulate = "^0.8.9"
statsmodels = "^0.13.1"
emcee = "^3.1.1"
dill = "^0.3.4"
corner = "^2.2.1"
tqdm = "^4.62.3"


[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""SpectraFit, fast command line tool for fitting data."""
__version__ = "0.8.4"
__version__ = "0.8.5"