Skip to content

Commit d10b657

Browse files
Apply migration from 25.9.0 to 26.3.1
=== v26.3.1 ========================================================= Source: inline script Collecting black==26.3.1 Downloading black-26.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (91 kB) Collecting click>=8.0.0 (from black==26.3.1) Downloading click-8.3.3-py3-none-any.whl.metadata (2.6 kB) Collecting mypy-extensions>=0.4.3 (from black==26.3.1) Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) Collecting packaging>=22.0 (from black==26.3.1) Downloading packaging-26.2-py3-none-any.whl.metadata (3.5 kB) Collecting pathspec>=1.0.0 (from black==26.3.1) Downloading pathspec-1.1.1-py3-none-any.whl.metadata (14 kB) Collecting platformdirs>=2 (from black==26.3.1) Downloading platformdirs-4.9.6-py3-none-any.whl.metadata (4.7 kB) Collecting pytokens~=0.4.0 (from black==26.3.1) Downloading pytokens-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB) Downloading black-26.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 154.4 MB/s 0:00:00 Downloading pytokens-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (268 kB) Downloading click-8.3.3-py3-none-any.whl (110 kB) Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) Downloading packaging-26.2-py3-none-any.whl (100 kB) Downloading pathspec-1.1.1-py3-none-any.whl (57 kB) Downloading platformdirs-4.9.6-py3-none-any.whl (21 kB) Installing collected packages: pytokens, platformdirs, pathspec, packaging, mypy-extensions, click, black Successfully installed black-26.3.1 click-8.3.3 mypy-extensions-1.1.0 packaging-26.2 pathspec-1.1.1 platformdirs-4.9.6 pytokens-0.4.1 [notice] A new release of pip is available: 26.0.1 -> 26.1.1 [notice] To update, run: pip install --upgrade pip reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/__init__.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_current.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_percentage.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_frequency.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_energy.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_temperature.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_power.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_voltage.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_reactive_power.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/tests/experimental/test_marshmallow.py reformatted /home/runner/work/frequenz-quantities-python/frequenz-quantities-python/src/frequenz/quantities/_quantity.py All done! ✨ 🍰 ✨ 11 files reformatted, 7 files left unchanged. The migration completed successfully.
1 parent 19d2817 commit d10b657

11 files changed

Lines changed: 0 additions & 11 deletions

File tree

src/frequenz/quantities/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686
`pip install frequenz-quantities[marshmallow]`).
8787
"""
8888

89-
9089
from ._apparent_power import ApparentPower
9190
from ._current import Current
9291
from ._energy import Energy

src/frequenz/quantities/_current.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from __future__ import annotations
87

98
from typing import TYPE_CHECKING, Self, overload

src/frequenz/quantities/_energy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from __future__ import annotations
87

98
from datetime import timedelta

src/frequenz/quantities/_frequency.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from datetime import timedelta
87
from typing import Self
98

src/frequenz/quantities/_percentage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from typing import Self
87

98
from ._quantity import NoDefaultConstructible, Quantity

src/frequenz/quantities/_power.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from __future__ import annotations
87

98
from datetime import timedelta

src/frequenz/quantities/_quantity.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from __future__ import annotations
87

98
import math

src/frequenz/quantities/_reactive_power.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding reactive power quantities with units."""
55

6-
76
from __future__ import annotations
87

98
from typing import TYPE_CHECKING, Self, overload

src/frequenz/quantities/_temperature.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from typing import Self
87

98
from ._quantity import NoDefaultConstructible, Quantity

src/frequenz/quantities/_voltage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
"""Types for holding quantities with units."""
55

6-
76
from __future__ import annotations
87

98
from typing import TYPE_CHECKING, Self, overload

0 commit comments

Comments
 (0)