Skip to content

Commit 09c61b7

Browse files
authored
Drop support for python 3.9 (#12)
Drop support for python 3.9 Drop support for python 3.9 - *Category*: Other - *JIRA issue*: https://jira.ihme.washington.edu/browse/MIC-5512 Changes and notes -drop support for python 3.9 ### Testing <!-- Details on how code was verified, any unit tests local for the repo, regression testing, etc. At a minimum, this should include an integration test for a framework change. Consider: plots, images, (small) csv file. -->
1 parent 8785ac1 commit 09c61b7

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11"]
17+
python-version: ["3.10", "3.11"]
1818
uses:
1919
ihmeuw/vivarium_build_utils/.github/workflows/build.yml@main
2020
with:

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**0.2.0 - 11/21/24**
2+
3+
- Drop support for Python 3.9
4+
15
**0.1.2 - 10/31/24**
26

37
- Add mypy type checking

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pipeline {
8282
axis {
8383
// parallelize by python minor version
8484
name 'PYTHON_VERSION'
85-
values "3.9", "3.10", "3.11"
85+
values "3.10", "3.11"
8686
}
8787
}
8888

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
min_version, max_version = ((3, 8), "3.8"), ((3, 12), "3.12")
3+
min_version, max_version = ((3, 10), "3.10"), ((3, 12), "3.12")
44

55
if not (min_version[0] <= sys.version_info[:2] <= max_version[0]):
66
# Python 3.5 does not support f-strings

0 commit comments

Comments
 (0)