Skip to content

Commit 72b7562

Browse files
authored
Merge pull request #2846 from consideRatio/pr/remove-workaround
hub image: remove workaround for ruamel.yaml.clib on aarch64
2 parents 6fc3d41 + 25483c6 commit 72b7562

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

images/hub/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ WORKDIR /build-stage
1111
#
1212
# - https://pypi.org/project/pycurl/#files, no wheels available as of 7.45.1.
1313
# See https://github.com/pycurl/pycurl/issues/738.
14-
# - https://pypi.org/project/ruamel.yaml.clib/#files, no aarch64 wheels
15-
# available as of 0.2.6. See
16-
# https://sourceforge.net/p/ruamel-yaml-clib/tickets/4/.
1714
#
1815
# If you find a dependency here no longer listed in requirements.txt, remove it
1916
# from here as well. The more wheels we build here and copy and then install,
@@ -23,8 +20,7 @@ WORKDIR /build-stage
2320
COPY requirements.txt requirements.txt
2421
RUN pip install build \
2522
&& pip wheel \
26-
$(cat requirements.txt | grep "pycurl==") \
27-
$(cat requirements.txt | grep "ruamel-yaml-clib==")
23+
$(cat requirements.txt | grep "pycurl==")
2824

2925

3026
# The final stage

0 commit comments

Comments
 (0)