Skip to content

Commit c3efcf6

Browse files
committed
ARROW-15100: [CI] Stop using Python 3.6 by default
Closes apache#11949 from pitrou/no-default-py36 Authored-by: Antoine Pitrou <antoine@python.org> Signed-off-by: Antoine Pitrou <antoine@python.org>
1 parent 902b541 commit c3efcf6

17 files changed

Lines changed: 29 additions & 29 deletions

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ MAVEN=3.5.4
6666
NODE=14
6767
NUMPY=latest
6868
PANDAS=latest
69-
PYTHON=3.6
69+
PYTHON=3.8
7070
R=4.1
7171
SPARK=master
7272
TURBODBC=latest

.github/workflows/archery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python
5656
uses: actions/setup-python@v1
5757
with:
58-
python-version: '3.6'
58+
python-version: '3.8'
5959
- name: Install pygit2 binary wheel
6060
run: pip install pygit2 --only-binary pygit2
6161
- name: Install Archery, Crossbow- and Test Dependencies

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: Install Python
8282
uses: actions/setup-python@v1
8383
with:
84-
python-version: '3.6'
84+
python-version: '3.8'
8585
- name: Install Ruby
8686
uses: ruby/setup-ruby@v1
8787
with:

ci/docker/conda-python-dask.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG dask=latest
2424
COPY ci/scripts/install_dask.sh /arrow/ci/scripts/
25-
RUN /arrow/ci/scripts/install_dask.sh ${dask}
25+
RUN /arrow/ci/scripts/install_dask.sh ${dask}

ci/docker/conda-python-hdfs.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=8

ci/docker/conda-python-jpype.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=11

ci/docker/conda-python-kartothek.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
# install kartothek dependencies from conda-forge

ci/docker/conda-python-pandas.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG pandas=latest

ci/docker/conda-python-spark.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=8

ci/docker/conda-python-turbodbc.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
ARG repo
1919
ARG arch=amd64
20-
ARG python=3.6
20+
ARG python=3.8
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
RUN export DEBIAN_FRONTEND=noninteractive && \

0 commit comments

Comments
 (0)