From e00075e8c1814aebac0a403084596c70da009857 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 27 Oct 2025 18:43:47 +0330 Subject: [PATCH 1/4] fix : Python 3.14 added to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index abf4514..13dfa46 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ def read_description(): 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', 'Topic :: Scientific/Engineering :: Chemistry', 'Topic :: Scientific/Engineering :: Physics', ], From c40168e0d4c1e6dd4ad0ecdd6e172f7f8ed3fff6 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 27 Oct 2025 18:44:46 +0330 Subject: [PATCH 2/4] fix : Python 3.14 added to test.yml --- .github/workflows/publish_conda.yaml | 2 +- .github/workflows/publish_pypi.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish_conda.yaml b/.github/workflows/publish_conda.yaml index 31dd614..b0c8668 100644 --- a/.github/workflows/publish_conda.yaml +++ b/.github/workflows/publish_conda.yaml @@ -10,7 +10,7 @@ jobs: publish: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: publish-to-conda uses: sepandhaghighi/conda-package-publish-action@v1.2 with: diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index cefb0f6..7c1013b 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -15,9 +15,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c5b618..96ee41e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-2022, macOS-13] - python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0] + os: [ubuntu-22.04, windows-2022, macos-15-intel] + python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0, 3.14.0] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From 6f0981c09976c3a4a84cfb414dc115a97eb5aa4e Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 27 Oct 2025 18:45:19 +0330 Subject: [PATCH 3/4] fix : Python 3.14 added to bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9416fbc..b179550 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -68,6 +68,8 @@ body: label: Python version description: Which version of Python are you using? options: + - Python 3.14 + - Python 3.13 - Python 3.12 - Python 3.11 - Python 3.10 From c228b61ac1590cde5f5297202e92f3d5e8db1c45 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 27 Oct 2025 18:45:53 +0330 Subject: [PATCH 4/4] doc : CHANGELOG.md updated --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e63a213..cd4a534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `Python 3.5` support dropped - `Python 3.6` support dropped - `Python 3.13` added to `test.yml` +- `Python 3.14` added to `test.yml` - Restart mode updated ## [1.4] - 2024-03-16 ### Added