Skip to content
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

build: ⬆️ bump version to 1.2.2 and update max-version of Python to 3.13 #1844

Merged
merged 1 commit into from
Mar 12, 2025
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
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "SpectraFit"
version = "1.2.1"
version = "1.2.2"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
authors = [{ name = "Anselm Hahn", email = "[email protected]" }]
requires-python = ">=3.8,<3.13"
requires-python = ">=3.8,<3.14"
readme = "README.md"
license = "BSD-3-Clause"
maintainers = [{ name = "Anselm Hahn", email = "[email protected]" }]
Expand All @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
stacklevel=2,
)

__version__ = "1.2.1"
__version__ = "1.2.2"
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.2.1"
assert __version__ == "1.2.2"


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