Skip to content

Commit be8cc03

Browse files
Fix pandas build and bump version
1 parent 2e1ebd5 commit be8cc03

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

k8/images/pandas/Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WORKDIR /usr/src/app
1414
# Must build from source to be able to run tests
1515
# https://pandas.pydata.org/pandas-docs/stable/development/contributing.html#creating-a-development-environment
1616
RUN git clone \
17-
--branch v1.0.5 \
17+
--branch v1.1.0 \
1818
--depth 1 \
1919
git://github.com/pandas-dev/pandas.git \
2020
.
@@ -25,11 +25,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
2525
-r requirements-dev.txt \
2626
pytest-custom_exit_code
2727

28-
# need till released:
29-
# https://github.com/pandas-dev/pandas/pull/35323
30-
RUN --mount=type=cache,target=/root/.cache/pip \
31-
pip install \
32-
'matplotlib>=3.0.0,<3.3.0'
3328

3429
RUN python setup.py build_ext --inplace -j 4
3530
RUN --mount=type=cache,target=/root/.cache/pip \
@@ -42,4 +37,4 @@ RUN python -c "import pandas"
4237

4338

4439
ENV PYTHON_RECORD_API_FROM_MODULES=pandas
45-
CMD [ "pytest", "pandas", "--skip-slow", "--skip-network", "--skip-db", "-m", "'not single'", "-r", "sxX", "--strict", "--suppress-tests-failed-exit-code" ]
40+
CMD [ "pytest", "pandas", "--skip-slow", "--skip-network", "--skip-db", "-m", "not single", "-r", "sxX", "--strict", "--suppress-tests-failed-exit-code" ]

k8/images/pandas/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3
1+
1.1.0

0 commit comments

Comments
 (0)