Skip to content

Commit a4d9533

Browse files
author
Angus Scheibner
authored
Merge pull request #110 from aodn/build-fix
Fixes https://github.com/aodn/issues/issues/671. Update Dockerfile wi…
2 parents 9cfda45 + 9b13f3f commit a4d9533

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ENV LANG C.UTF-8
77
ENV PATH /home/builder/.local/bin:$PATH
88

99
RUN apt-get update && apt-get install -y --no-install-recommends \
10+
build-essential \
1011
ca-certificates \
1112
git \
1213
libxml2-dev \
@@ -26,6 +27,7 @@ RUN wget -q https://bootstrap.pypa.io/get-pip.py \
2627

2728
RUN pip install \
2829
Cython==0.29 \
30+
numpy>=1.13.0 \
2931
bump2version==0.5.10
3032

3133
RUN useradd --create-home --no-log-init --shell /bin/bash --uid $BUILDER_UID builder

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
'jsonschema>=2.6.0,<3.0.0',
55
'numpy>=1.13.0',
66
'netCDF4>=1.5.3',
7-
'pandas>=0.24.2',
8-
'xarray>=0.11.3'
7+
'pandas>=0.24.2,<0.25.0',
8+
'xarray>=0.11.3,<0.14.0'
99
]
1010

1111
PACKAGE_DATA = {

0 commit comments

Comments
 (0)