Skip to content

Commit 1704bdd

Browse files
authored
Add support for python 3.13 (#34)
Albrja/mic-6187/Add support for python 3.13 Add support for python 3.12 and 3.13 - *Category*: Feature - *JIRA issue*: https://jira.ihme.washington.edu/browse/MIC-6187
1 parent 523dc69 commit 1704bdd

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: "3.11"
27+
python-version: "3.13"
2828
- name: Install dependencies
2929
run: |
3030
python --version

.github/workflows/update_readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: 3.11
17+
python-version: 3.13
1818
- name: Update README
1919
run: |
2020
pip install packaging

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sphinx:
1111
build:
1212
os: ubuntu-22.04
1313
tools:
14-
python: "3.11"
14+
python: "3.13"
1515
python:
1616
install:
1717
# This runs pip install .[docs] from the project root.

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**4.1.0 - 02/19/26**
2+
3+
- Add support for Python versions 3.12 and 3.13
4+
15
**4.0.7 - 01/06/26**
26

37
- Fail deployment if changelog date does not match current date

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ or build it from from source:
1616

1717
``> cd layered_config_tree``
1818

19-
``> conda create -n ENVIRONMENT_NAME python=3.11``
19+
``> conda create -n ENVIRONMENT_NAME python=3.13``
2020

2121
``> pip install .``
2222

python_versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
["3.10", "3.11"]
1+
["3.10", "3.11", "3.12", "3.13"]

0 commit comments

Comments
 (0)