Skip to content

Commit 2fd911d

Browse files
Action (#265)
* fix : action version updated * fix : macos-15-intel added to tests * fix : Python 3.14 added to test.yml * fix : setup.py updated * doc : bug_report.yml updated * doc : CHANGELOG.md updated
1 parent c616e23 commit 2fd911d

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ body:
6868
label: Python version
6969
description: Which version of Python are you using?
7070
options:
71+
- Python 3.14
7172
- Python 3.13
7273
- Python 3.12
7374
- Python 3.11

.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [ubuntu-22.04, windows-2022]
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:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install package

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Changed
9+
- Test system modified
10+
- `Python 3.14` added to `test.yml`
811
## [1.6] - 2025-07-16
912
### Added
1013
- 2 new generation modes

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def read_description() -> str:
7070
'Programming Language :: Python :: 3.11',
7171
'Programming Language :: Python :: 3.12',
7272
'Programming Language :: Python :: 3.13',
73+
'Programming Language :: Python :: 3.14',
7374
],
7475
license='MIT',
7576
include_package_data=True,

0 commit comments

Comments
 (0)