Skip to content

Commit 095fd95

Browse files
authored
initial attempt at Python 3.14 in CI (#97)
* initial attempt at Python 3.14 in CI * try Python 3.14 for mac and windows
1 parent 232f0c1 commit 095fd95

File tree

5 files changed

+31
-16
lines changed

5 files changed

+31
-16
lines changed

.github/workflows/build_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: ['ubuntu-latest']
25-
environment-file: [ci/313-latest.yaml]
25+
environment-file: [ci/314-latest.yaml]
2626
experimental: [false]
2727
defaults:
2828
run:

.github/workflows/testing.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,16 @@ jobs:
3232
311-latest,
3333
312-latest,
3434
313-latest,
35-
313-dev,
35+
314-latest,
36+
314-dev,
3637
]
3738
experimental: [false]
3839
include:
39-
- environment-file: 313-latest
40+
- environment-file: 314-latest
4041
os: macos-15-intel # Intel
41-
- environment-file: 313-latest
42+
- environment-file: 314-latest
4243
os: macos-latest # Apple Silicon
43-
- environment-file: 313-latest
44+
- environment-file: 314-latest
4445
os: windows-latest
4546
fail-fast: false
4647

ci/313-latest.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,3 @@ dependencies:
1212
- pytest
1313
- pytest-cov
1414
- pytest-xdist
15-
# docs
16-
- nbsphinx
17-
- numpydoc
18-
- quilt3
19-
- sphinx
20-
- sphinxcontrib-napoleon
21-
- sphinx-gallery
22-
- sphinxcontrib-bibtex
23-
- sphinx_bootstrap_theme

ci/313-dev.yaml renamed to ci/314-dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: 313-dev
2+
name: 314-dev
33
channels:
44
- conda-forge
55
dependencies:
6-
- python=3.13
6+
- python=3.14
77
- git
88
- pip
99
# testing

ci/314-latest.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: 314-latest
3+
channels:
4+
- conda-forge
5+
dependencies:
6+
- python=3.14
7+
- geopandas
8+
- numpy
9+
- pandas
10+
- scipy
11+
# testing, etc
12+
- pytest
13+
- pytest-cov
14+
- pytest-xdist
15+
# docs
16+
- nbsphinx
17+
- numpydoc
18+
- quilt3
19+
- sphinx
20+
- sphinxcontrib-napoleon
21+
- sphinx-gallery
22+
- sphinxcontrib-bibtex
23+
- sphinx_bootstrap_theme

0 commit comments

Comments
 (0)