Skip to content

Commit 8c846c9

Browse files
Python 3.14 (#240)
* fix : Python 3.14 added to setup.py * fix : Python 3.14 added to test.yml * fix : Python 3.14 added to bug_report.yml * doc : CHANGELOG.md updated
1 parent bde982e commit 8c846c9

6 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ body:
6868
label: Python version
6969
description: Which version of Python are you using?
7070
options:
71+
- Python 3.14
72+
- Python 3.13
7173
- Python 3.12
7274
- Python 3.11
7375
- Python 3.10

.github/workflows/publish_conda.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
publish:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v4
1414
- name: publish-to-conda
1515
uses: sepandhaghighi/conda-package-publish-action@v1.2
1616
with:

.github/workflows/publish_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-22.04
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Set up Python
20-
uses: actions/setup-python@v1
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: '3.x'
2323
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [ubuntu-22.04, windows-2022, macOS-13]
29-
python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0]
28+
os: [ubuntu-22.04, windows-2022, macos-15-intel]
29+
python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0, 3.14.0]
3030
steps:
3131
- uses: actions/checkout@v4
3232
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1919
- `Python 3.5` support dropped
2020
- `Python 3.6` support dropped
2121
- `Python 3.13` added to `test.yml`
22+
- `Python 3.14` added to `test.yml`
2223
- Restart mode updated
2324
## [1.4] - 2024-03-16
2425
### Added

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def read_description():
6767
'Programming Language :: Python :: 3.11',
6868
'Programming Language :: Python :: 3.12',
6969
'Programming Language :: Python :: 3.13',
70+
'Programming Language :: Python :: 3.14',
7071
'Topic :: Scientific/Engineering :: Chemistry',
7172
'Topic :: Scientific/Engineering :: Physics',
7273
],

0 commit comments

Comments
 (0)