Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 3805b39

Browse files
committed
Fix build issue (see pypa/pip#6158)
1 parent 71578df commit 3805b39

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.8.0-RC4 (2019/02/04)
4+
5+
* Fix build issue (see pypa/pip#6158)
6+
37
## 1.8.0-RC3 (2019/01/22)
48

59
* Add `FF_SYNCSERVER_SQLURI` env var (Issue #5)

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ RUN apk --update --no-cache add \
2828
&& cd app \
2929
&& git reset --hard $SHA1_COMMIT \
3030
&& pip install pymysql \
31-
&& pip install --upgrade --no-cache-dir -r requirements.txt \
32-
&& pip install --upgrade --no-cache-dir -r dev-requirements.txt \
31+
&& pip install --upgrade --no-cache-dir --no-use-pep517 -r requirements.txt \
32+
&& pip install --upgrade --no-cache-dir --no-use-pep517 -r dev-requirements.txt \
3333
&& apk del build-dependencies \
3434
&& rm -rf /tmp/* /var/cache/apk/* \
3535
&& python ./setup.py develop \

0 commit comments

Comments
 (0)