charmlibs-snap 0.8.0__tar.gz → 0.8.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,7 @@
1
+ # 0.8.1 - 5 February 026
2
+
3
+ Import TypeAlias and builtin generic types from the correct location for Python 3.8.
4
+
1
5
  # 0.8.0 - 10 December 2025
2
6
 
3
7
  Release with Python 3.8 support. This is a 0.X release which does not guarantee extended support. Changes from the 1.0 release are purely `typing` related. This release is otherwise identical to the 1.0.1 release.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: charmlibs-snap
3
- Version: 0.8.0
3
+ Version: 0.8.1
4
4
  Summary: The charmlibs.snap package.
5
5
  Project-URL: Documentation, https://documentation.ubuntu.com/charmlibs/reference/charmlibs/snap/
6
6
  Project-URL: Repository, https://github.com/canonical/charmlibs
@@ -48,10 +48,9 @@ import opentelemetry.trace
48
48
 
49
49
  if typing.TYPE_CHECKING:
50
50
  # avoid typing_extensions import at runtime
51
- from collections.abc import Callable, Iterable, Sequence
52
- from typing import TypeAlias
51
+ from typing import Callable, Iterable, Sequence
53
52
 
54
- from typing_extensions import NotRequired, ParamSpec, Required, Self, Unpack
53
+ from typing_extensions import NotRequired, ParamSpec, Required, Self, TypeAlias, Unpack
55
54
 
56
55
  _P = ParamSpec('_P')
57
56
  _T = TypeVar('_T')
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = '0.8.0'
15
+ __version__ = '0.8.1'
File without changes
File without changes