We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9cfda45 + 9b13f3f commit a4d9533Copy full SHA for a4d9533
2 files changed
Dockerfile
@@ -7,6 +7,7 @@ ENV LANG C.UTF-8
7
ENV PATH /home/builder/.local/bin:$PATH
8
9
RUN apt-get update && apt-get install -y --no-install-recommends \
10
+ build-essential \
11
ca-certificates \
12
git \
13
libxml2-dev \
@@ -26,6 +27,7 @@ RUN wget -q https://bootstrap.pypa.io/get-pip.py \
26
27
28
RUN pip install \
29
Cython==0.29 \
30
+ numpy>=1.13.0 \
31
bump2version==0.5.10
32
33
RUN useradd --create-home --no-log-init --shell /bin/bash --uid $BUILDER_UID builder
setup.py
@@ -4,8 +4,8 @@
4
'jsonschema>=2.6.0,<3.0.0',
5
'numpy>=1.13.0',
6
'netCDF4>=1.5.3',
- 'pandas>=0.24.2',
- 'xarray>=0.11.3'
+ 'pandas>=0.24.2,<0.25.0',
+ 'xarray>=0.11.3,<0.14.0'
]
PACKAGE_DATA = {
0 commit comments