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]

### Addded

- New option for `pretext deploy`. If you pass `--no-push` then deploy will commit your output to the `gh-pages` branch but not push. This can be useful for CI/CD workflows or in case deploy encounters an authentication error.

### Changed

- The default devcontainer no longer includes a full LaTeX install. If you run into trouble generating latex-images or building pdfs, see the README.md file for assistance.
Expand Down
5 changes: 0 additions & 5 deletions pretext/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,11 +607,6 @@ def build(
xmlid: t.Optional[str] = None,
no_knowls: bool = False,
) -> None:
# Temporary fix for Runestone that runs the CLI as a library in a worker
# remove the variables attr at the start of each build.
if hasattr(core.get_publisher_variable, "variables"):
delattr(core.get_publisher_variable, "variables")

# Add cli.version to stringparams. Use only the major and minor version numbers.
self.stringparams["cli.version"] = VERSION[: VERSION.rfind(".")]

Expand Down