-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix regex escape in _get_pandoc_urls (#362)
* fix regex escape in _get_pandoc_urls * Updated lock file to fix gh actions * fixed ci error --------- Co-authored-by: JessicaTegner <[email protected]>
- Loading branch information
1 parent
315c6b9
commit 31105f1
Showing
3 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,7 @@ jobs: | |
- name: Build binary Archive | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BEFORE_ALL: "python3 -m pip install setuptools && mv setup_binary.py setup.py && python3 setup.py download_pandoc" | ||
CIBW_BEFORE_ALL: "python3 -m pip install --break-system-packages setuptools && mv setup_binary.py setup.py && python3 setup.py download_pandoc" | ||
CIBW_BUILD: cp39-* # Build any 1 python version as this wheel is not version dependent | ||
# We skip some variants because: | ||
# - pandoc does not publish binaries for Linux 32bit | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters