Skip to content

Commit 562001b

Browse files
authored
Include braille_format.py in list of bundled scripts (#1047)
1 parent 4b82a1c commit 562001b

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Instructions: Add a subsection under `[Unreleased]` for additions, fixes, change
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- Bug preventing braille building to work.
15+
1216
## [2.25.1] - 2025-08-01
1317

1418
Includes updates to core through commit: [f15f9b9](https://github.com/PreTeXtBook/pretext/commit/f15f9b9fee75331d64d0fff4d757c479ef85fcb7)

pretext/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
VERSION = get_version("pretext", Path(__file__).parent.parent)
2020

2121

22-
CORE_COMMIT = "f15f9b9fee75331d64d0fff4d757c479ef85fcb7"
22+
CORE_COMMIT = "f78029a26ab131d9114b9235f3b51686d5819eb6"
2323

2424

2525
def activate() -> None:

pretext/core/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
from .pretext import *
33
from . import pretext
44

5-
# from .braille_format import *
6-
# from . import braille_format
75
except ImportError as e:
86
raise ImportError(
97
"Failed to import the core pretext.py file. Perhaps the file is unavailable? "

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ authors = [
2121
"Steven Clontz <steven.clontz@gmail.com>",
2222
]
2323
license = "GPL-3.0-or-later"
24-
include = ["pretext/core/pretext.py", "pretext/resources/*.zip", "pretext/resources/*.json"]
24+
include = ["pretext/core/pretext.py", "pretext/core/braille_format.py", "pretext/resources/*.zip", "pretext/resources/*.json"]
2525

2626
# Dependencies
2727
# ------------

0 commit comments

Comments
 (0)