Skip to content

Commit

Permalink
chore: 🔖 bump version to 1.0.6 and update dependencies for mkdocs-jup…
Browse files Browse the repository at this point in the history
…yter and mkdocs-material
  • Loading branch information
Anselmoo committed Oct 16, 2024
1 parent b27b1a9 commit ef2fca7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
17 changes: 6 additions & 11 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SpectraFit"
version = "1.0.5"
version = "1.0.6"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <[email protected]>"]
Expand Down
6 changes: 4 additions & 2 deletions spectrafit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
import sys
import warnings

from typing import Literal

PYTHON_38_VERSION = (3, 8)

PYTHON_38_VERSION: tuple[Literal[3], Literal[8]] = (3, 8)

if sys.version_info[:2] == PYTHON_38_VERSION:
version_str = f"{PYTHON_38_VERSION[0]}.{PYTHON_38_VERSION[1]}"
Expand All @@ -27,4 +29,4 @@
DeprecationWarning,
)

__version__ = "1.0.5"
__version__ = "1.0.6"

0 comments on commit ef2fca7

Please sign in to comment.