Skip to content

Commit 1fb4ec9

Browse files
committed
assume python 3.11 is enough to give us pandas 3
1 parent 4a49016 commit 1fb4ec9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs_light.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ env:
3838
ARCHERY_DEBUG: 1
3939
ARROW_ENABLE_TIMING_TESTS: OFF
4040
DOCKER_VOLUME_PREFIX: ".docker/"
41-
PANDAS: "latest"
4241

4342
jobs:
4443

@@ -70,4 +69,4 @@ jobs:
7069
env:
7170
ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }}
7271
ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
73-
run: archery docker run --no-cache conda-python-docs
72+
run: archery docker run conda-python-docs

ci/conda_env_sphinx.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ sphinxcontrib-jquery
3535
sphinxcontrib-mermaid
3636
sphinx
3737
pytest-cython
38+
pandas

ci/scripts/install_pandas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if [ "${pandas}" = "upstream_devel" ]; then
4040
elif [ "${pandas}" = "nightly" ]; then
4141
pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --pre pandas
4242
elif [ "${pandas}" = "latest" ]; then
43-
pip install 'pandas>=3'
43+
pip install pandas
4444
else
4545
pip install pandas=="${pandas}"
4646
fi

0 commit comments

Comments
 (0)