Skip to content

Commit 2d03f75

Browse files
authored
Merge pull request #7 from boltronics/updates
Support for Python 3.14 and updated GitHub actions
2 parents d8507b9 + 7ed33c6 commit 2d03f75

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
strategy:
1616
matrix:
17-
python-version: ["3.11", "3.12", "3.13"]
17+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

{{cookiecutter.package_name}}/.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
runs-on: ubuntu-24.04
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ env.PYTHON_VERSION }}
2626

@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Cache pip dependencies and hatch environments
3131
id: cache
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: |
3535
~/.cache/pip

{{cookiecutter.package_name}}/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ classifiers = [
4747
"Programming Language :: Python :: 3.11",
4848
"Programming Language :: Python :: 3.12",
4949
"Programming Language :: Python :: 3.13",
50+
"Programming Language :: Python :: 3.14",
5051
]
5152

5253
[project.urls]
@@ -75,7 +76,7 @@ extra-dependencies = [
7576
]
7677

7778
[[tool.hatch.envs.hatch-test.matrix]]
78-
python = ["3.11", "3.12", "3.13"]
79+
python = ["3.11", "3.12", "3.13", "3.14"]
7980

8081
[tool.hatch.envs.coverage]
8182
extra-dependencies = [

0 commit comments

Comments
 (0)