Skip to content

Commit 6e74524

Browse files
committed
Don't install optional pyarrow package in Python 3.13 CI build
PyArrow's dependencies (specifically sparse and numba) aren't supported on Python 3.13 yet, so removing for now since PyArrow is included in the Python 3.11 CI build (#3605). Downgraded Python version in environment.yml from =3.13 to >=3.10
1 parent 642a538 commit 6e74524

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
numpy-version: '2.1'
7979
pandas-version: ''
8080
xarray-version: ''
81-
optional-packages: ' contextily geopandas ipython pyarrow rioxarray sphinx-gallery'
81+
optional-packages: ' contextily geopandas ipython rioxarray sphinx-gallery'
8282
# The job below is for testing GeoPandas v0.x on Ubuntu.
8383
# The python-version here can't be the versions in the matrix.python-version
8484
# defined above. Otherwise, other jobs will be overridden by this one.

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
- nodefaults
55
dependencies:
6-
- python=3.13
6+
- python>=3.10
77
# Required dependencies
88
- gmt=6.5.0
99
- ghostscript=10.04.0

0 commit comments

Comments
 (0)