From b52bfc342a8455d8c8ccaf70f8709599d8ff939e Mon Sep 17 00:00:00 2001 From: Dan Brady Date: Tue, 4 Nov 2025 11:57:50 +0000 Subject: [PATCH 1/3] update python version in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b087d8..19545c9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Make sure you have [conda](https://conda.io/projects/conda/en/latest/user-guide/ ### Create conda environment ``` -conda create --name python-calculator python=3.8 +conda create --name python-calculator python=3.14 ``` ### Activate conda environment From 7431beaa1912377dfd63124467af52358c0e3913 Mon Sep 17 00:00:00 2001 From: Dan Brady Date: Tue, 4 Nov 2025 11:58:06 +0000 Subject: [PATCH 2/3] update deps in requirements.txt --- requirements.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements.txt b/requirements.txt index f5fdee0..52d7bc8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ -attrs==21.2.0 -certifi==2020.12.5 -iniconfig==1.1.1 -packaging==20.9 -pluggy==0.13.1 -py==1.10.0 -pyparsing==2.4.7 -pytest==6.2.4 +attrs==25.4.0 +certifi==2025.10.5 +iniconfig==2.3.0 +packaging==25.0 +pluggy==1.6.0 +py==1.11.0 +pyparsing==3.2.5 +pytest==8.4.2 toml==0.10.2 From 891f095149ed3fb615d4872acedf36a52a72408d Mon Sep 17 00:00:00 2001 From: Dan Brady Date: Tue, 4 Nov 2025 11:58:16 +0000 Subject: [PATCH 3/3] update workflow --- .github/workflows/test-python-package.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python-package.yaml b/.github/workflows/test-python-package.yaml index fb319c1..4f45fad 100644 --- a/.github/workflows/test-python-package.yaml +++ b/.github/workflows/test-python-package.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v2