Skip to content

Commit 162b15f

Browse files
continuous integration at Python 3.10 ~ 3.14, development environment at Python 3.14
1 parent 4f77309 commit 162b15f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- name: Checkout repository

makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Python version for environment creation
2+
PYTHON_VERSION ?= 3.14
3+
14
.PHONY: clean test build twine-upload dist environment install uninstall reinstall test
25

36
clean:
@@ -23,7 +26,7 @@ dist:
2326
make twine-upload
2427

2528
environment:
26-
mamba create -y -n rasters python=3.11 jupyter
29+
mamba create -y -n rasters python=$(PYTHON_VERSION) jupyter
2730

2831
remove-environment:
2932
mamba env remove -y -n rasters

0 commit comments

Comments
 (0)