memoryframes 0.6.0__tar.gz → 0.6.2__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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: memoryframes
3
- Version: 0.6.0
3
+ Version: 0.6.2
4
4
  Summary: Add your description here
5
5
  Author: David Brownell
6
6
  Author-email: David Brownell <github@DavidBrownell.com>
@@ -33,6 +33,8 @@ Description-Content-Type: text/markdown
33
33
 
34
34
  **Development:**
35
35
  [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
36
+ [![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
37
+ [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://docs.pytest.org/)
36
38
  [![CI](https://github.com/davidbrownell/MemoryFrames/actions/workflows/CICD.yml/badge.svg)](https://github.com/davidbrownell/MemoryFrames/actions/workflows/CICD.yml)
37
39
  [![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/davidbrownell/f15146b1b8fdc0a5d45ac0eb786a84f7/raw/MemoryFrames_code_coverage.json)](https://github.com/davidbrownell/MemoryFrames/actions)
38
40
  [![GitHub commit activity](https://img.shields.io/github/commit-activity/y/davidbrownell/MemoryFrames?color=dark-green)](https://github.com/davidbrownell/MemoryFrames/commits/main/)
@@ -8,6 +8,8 @@
8
8
 
9
9
  **Development:**
10
10
  [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
11
+ [![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
12
+ [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://docs.pytest.org/)
11
13
  [![CI](https://github.com/davidbrownell/MemoryFrames/actions/workflows/CICD.yml/badge.svg)](https://github.com/davidbrownell/MemoryFrames/actions/workflows/CICD.yml)
12
14
  [![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/davidbrownell/f15146b1b8fdc0a5d45ac0eb786a84f7/raw/MemoryFrames_code_coverage.json)](https://github.com/davidbrownell/MemoryFrames/actions)
13
15
  [![GitHub commit activity](https://img.shields.io/github/commit-activity/y/davidbrownell/MemoryFrames?color=dark-green)](https://github.com/davidbrownell/MemoryFrames/commits/main/)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "MemoryFrames"
3
- version = "0.6.0"
3
+ version = "0.6.2"
4
4
  # ^^^^^
5
5
  # Wheel names will be generated according to this value. Do not manually modify this value; instead
6
6
  # update it according to committed changes by running this command from the root of the repository:
@@ -121,12 +121,12 @@ class _LoadingModal(ModalScreen[AppState]):
121
121
  else:
122
122
  assert False, event_type # noqa: B011, PT015
123
123
 
124
- loading_module._status_label.content = msg # noqa: SLF001
124
+ loading_module._status_label.content = msg
125
125
 
126
126
  # ----------------------------------------------------------------------
127
127
  @override
128
128
  def OnException(self, exception: Exception) -> None:
129
- if loading_module._settings.debug: # noqa: SLF001
129
+ if loading_module._settings.debug:
130
130
  msg = "".join(traceback.format_exception(exception))
131
131
  else:
132
132
  msg = str(exception)
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from enum import Enum
3
+ from enum import StrEnum
4
4
  from pathlib import Path
5
5
  from typing import Annotated
6
6
 
@@ -46,7 +46,7 @@ def _GetWorkingDir() -> Path:
46
46
 
47
47
 
48
48
  # ----------------------------------------------------------------------
49
- class _ExperienceType(str, Enum):
49
+ class _ExperienceType(StrEnum):
50
50
  Textual = "Textual"
51
51
 
52
52