Skip to content

Commit 31dc115

Browse files
authored
chore: ⬆️ update subproject commit for docker-stacks (#1651)
* chore: 🔖 bump version to 1.0.6 and update dependencies for mkdocs-jupyter and mkdocs-material * chore: ⬆️ update subproject commit for docker-stacks * fix: 🐛 update version assertion in test to match 1.0.6
1 parent b27b1a9 commit 31dc115

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

poetry.lock

+6-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "SpectraFit"
3-
version = "1.0.5"
3+
version = "1.0.6"
44
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
55
readme = "README.md"
66
authors = ["Anselm Hahn <[email protected]>"]

spectrafit/__init__.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@
1414
import sys
1515
import warnings
1616

17+
from typing import Tuple
1718

18-
PYTHON_38_VERSION = (3, 8)
19+
from typing_extensions import Literal
20+
21+
22+
PYTHON_38_VERSION: Tuple[Literal[3], Literal[8]] = (3, 8)
1923

2024
if sys.version_info[:2] == PYTHON_38_VERSION:
2125
version_str = f"{PYTHON_38_VERSION[0]}.{PYTHON_38_VERSION[1]}"
@@ -27,4 +31,4 @@
2731
DeprecationWarning,
2832
)
2933

30-
__version__ = "1.0.5"
34+
__version__ = "1.0.6"

spectrafit/test/test_init.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
def test_version() -> None:
1515
"""Test the version string."""
16-
assert __version__ == "1.0.5"
16+
assert __version__ == "1.0.6"
1717

1818

1919
def test_python_38_warning(monkeypatch: MonkeyPatch) -> None:

vendor/docker-stacks

Submodule docker-stacks updated 46 files

0 commit comments

Comments
 (0)