Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Instructions: Add a subsection under `[Unreleased]` for additions, fixes, change

## [Unreleased]

### Fixed

- Bug preventing braille building to work.

## [2.25.1] - 2025-08-01

Includes updates to core through commit: [f15f9b9](https://github.com/PreTeXtBook/pretext/commit/f15f9b9fee75331d64d0fff4d757c479ef85fcb7)
Expand Down
2 changes: 1 addition & 1 deletion pretext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
VERSION = get_version("pretext", Path(__file__).parent.parent)


CORE_COMMIT = "f15f9b9fee75331d64d0fff4d757c479ef85fcb7"
CORE_COMMIT = "f78029a26ab131d9114b9235f3b51686d5819eb6"


def activate() -> None:
Expand Down
2 changes: 0 additions & 2 deletions pretext/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
from .pretext import *
from . import pretext

# from .braille_format import *
# from . import braille_format
except ImportError as e:
raise ImportError(
"Failed to import the core pretext.py file. Perhaps the file is unavailable? "
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors = [
"Steven Clontz <steven.clontz@gmail.com>",
]
license = "GPL-3.0-or-later"
include = ["pretext/core/pretext.py", "pretext/resources/*.zip", "pretext/resources/*.json"]
include = ["pretext/core/pretext.py", "pretext/core/braille_format.py", "pretext/resources/*.zip", "pretext/resources/*.json"]

# Dependencies
# ------------
Expand Down
Loading