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 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 }} 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 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', ],