-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert Pygments backward incompatibility work-around
The issue was fixed in upstream's 8.2.2 release. See getnikola/nikola#3617 (comment). This commit reverts 1af4168.
- Loading branch information
1 parent
cb85285
commit 68379f5
Showing
3 changed files
with
2 additions
and
15 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
* | ||
!Dockerfile | ||
!constraints.txt |
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ MAINTAINER Olaf Meeuwissen <[email protected]> | |
ENV PIP_OPTS --no-cache-dir --disable-pip-version-check | ||
ARG _VERSION | ||
|
||
COPY constraints.txt /tmp/constraints.txt | ||
RUN apk add --no-cache \ | ||
python3 \ | ||
py3-pip \ | ||
|
@@ -27,8 +26,7 @@ RUN apk add --no-cache \ | |
jpeg-dev \ | ||
&& \ | ||
CFLAGS="$CFLAGS -L/lib" \ | ||
pip3 install -c /tmp/constraints.txt $PIP_OPTS \ | ||
nikola$_VERSION \ | ||
pip3 install $PIP_OPTS nikola$_VERSION \ | ||
&& \ | ||
apk del .build-deps && \ | ||
find /usr/lib/python3.* \ | ||
|
@@ -47,8 +45,7 @@ RUN apk add --no-cache \ | |
python3-dev \ | ||
zeromq-dev \ | ||
&& \ | ||
pip3 install -c /tmp/constraints.txt $PIP_OPTS \ | ||
'nikola[extras]'$_VERSION \ | ||
pip3 install $PIP_OPTS 'nikola[extras]'$_VERSION \ | ||
&& \ | ||
apk del .extra-build-deps && \ | ||
find /usr/lib/python3.* \ | ||
|
This file was deleted.
Oops, something went wrong.