Skip to content

Commit 032074a

Browse files
committed
build: add back python 3.10 support
1 parent d82c653 commit 032074a

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

.github/workflows/conda.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- macos-latest
3636
- windows-latest
3737
python-version:
38+
- '3.10'
3839
- '3.11'
3940
- '3.12'
4041
- '3.13'

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
strategy:
106106
matrix:
107107
python-version:
108+
- '3.10'
108109
- '3.11'
109110
- '3.12'
110111
- '3.13'

environment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55

66
# Changes here should be kept in sync with ./pyproject.toml
77
dependencies:
8-
- python >=3.11,<3.15
8+
- python >=3.10,<3.15
99
- click
1010
- geopandas >=1.00.0
1111
- matplotlib-base

nix/ci.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ in
6060
};
6161
poetry = {
6262
strategy.matrix.python-version = [
63+
"3.10"
6364
"3.11"
6465
"3.12"
6566
"3.13"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Fracture Network Analysis"
55
authors = [{name= "nialov", email = "nikolasovaskainen@gmail.com"}]
66
readme = "README.rst"
77
license = "MIT"
8-
requires-python = ">=3.11,<3.15"
8+
requires-python = ">=3.10,<3.15"
99
keywords = [
1010
"data",
1111
"gis",

0 commit comments

Comments
 (0)