Skip to content

Commit a49000f

Browse files
author
Tyler Coles
committed
Reset min python to 3.11; turns out we are using 3.11 features after all.
1 parent 810594a commit a49000f

File tree

4 files changed

+5
-211
lines changed

4 files changed

+5
-211
lines changed

.github/workflows/matrix-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
13-
python-version: ["3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.11", "3.12", "3.13"]
1414

1515
runs-on: ${{ matrix.os }}
1616

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
26-
python-version: ["3.10", "3.11", "3.12", "3.13"]
26+
python-version: ["3.11", "3.12", "3.13"]
2727

2828
runs-on: ${{ matrix.os }}
2929

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ description = "EpiMoRPH disease modeling"
1919

2020
readme = "README.md"
2121

22-
requires-python = ">=3.10"
22+
requires-python = ">=3.11"
2323

2424
license = {text="GPL-3.0-only"}
2525

2626
keywords = ["epidemiology", "disease modeling", "metapopulation"]
2727

2828
classifiers = [
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
3332
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)