Skip to content

Commit

Permalink
Merge pull request #1701 from Anselmoo/release/v1.0.0
Browse files Browse the repository at this point in the history
chore: 🔖 bump version to 1.1.0 and update dependencies
  • Loading branch information
Anselmoo authored Nov 24, 2024
2 parents cea58f9 + 1bf254d commit 758dac2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 56 deletions.
49 changes: 1 addition & 48 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SpectraFit"
version = "1.0.6"
version = "1.1.0"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <[email protected]>"]
Expand Down Expand Up @@ -102,7 +102,7 @@ pre-commit = [
]
pytest = ">=7.1.3,<9.0.0"
pytest-clarity = "^1.0.1"
pytest-cov = ">=3,<6"
pytest-cov = ">=3,<7"
pytest-console-scripts = "^1.3.1"
pytest-xdist = ">=2.5,<4.0"
pytest-plt = "^1.1.0"
Expand All @@ -119,7 +119,7 @@ ruff = "^0.8.0"

[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.0"
mkdocstrings = { extras = ["python"], version = ">=0.26.0,<0.27.0" }
mkdocstrings = { extras = ["python"], version = ">=0.26.0,<0.28.0" }
mkdocs-literate-nav = ">=0.4.1,<0.7.0"
mkdocs-section-index = "^0.3.4"
mkdocs-autorefs = "^1.0.1"
Expand Down Expand Up @@ -178,7 +178,6 @@ fixable = ["ALL"]
extend-ignore = ["E721", "E731"]



[tool.pytest]
script_launch_mode = "subprocess"
[tool.pytest.ini_options]
Expand All @@ -187,8 +186,6 @@ addopts = "--cov=./spectrafit/ --cov-report=xml:coverage.xml --diff-symbols --pl
testpaths = ["spectrafit"]




[tool.mypy]
plugins = ["pydantic.mypy", "numpy.typing.mypy_plugin"]
follow_imports = "silent"
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
DeprecationWarning,
)

__version__ = "1.0.6"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion spectrafit/test/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

def test_version() -> None:
"""Test the version string."""
assert __version__ == "1.0.6"
assert __version__ == "1.1.0"


def test_python_38_warning(monkeypatch: MonkeyPatch) -> None:
Expand Down

0 comments on commit 758dac2

Please sign in to comment.