Skip to content

Commit d9de30b

Browse files
committed
Drop 3.8, add 3.14, update Actions workflows
1 parent 9c66388 commit d9de30b

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout python-lib
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
path: main
1616
- name: Checkout python-lib-template-demo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
repository: simonw/python-lib-template-demo
2020
path: python-lib-template-demo-current
2121
token: ${{ secrets.PERSONAL_ACCESS_TOKEN_FOR_PUSH }}
2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.11"
2626
cache: pip

{{cookiecutter.hyphenated}}/.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
cache: pip
@@ -31,11 +31,11 @@ jobs:
3131
runs-on: ubuntu-latest
3232
needs: [test]
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Set up Python
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@v6
3737
with:
38-
python-version: "3.13"
38+
python-version: "3.14"
3939
cache: pip
4040
cache-dependency-path: pyproject.toml
4141
- name: Install dependencies

{{cookiecutter.hyphenated}}/.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
cache: pip

{{cookiecutter.hyphenated}}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "{{ cookiecutter.hyphenated }}"
33
version = "0.1"
44
description = "{{ cookiecutter.description or "" }}"
55
readme = "README.md"
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.10"
77
authors = [{name = "{{ cookiecutter.author_name }}"}]
88
license = "Apache-2.0"
99
classifiers = []

0 commit comments

Comments
 (0)