Skip to content

Commit 7d6913e

Browse files
committed
ci: do things in a Python 3.14 environment instead of 3.13
1 parent d1d23bc commit 7d6913e

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-python@v6
1818

1919
with:
20-
python-version: 3.13
20+
python-version: "3.14"
2121

2222
- name: Build package
2323
run: |

.github/workflows/tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v6
1818
- uses: actions/setup-python@v6
1919
with:
20-
python-version: 3.13
20+
python-version: "3.14"
2121

2222
# ref: https://github.com/pre-commit/action
2323
- uses: pre-commit/action@v3.0.1
@@ -54,10 +54,10 @@ jobs:
5454
- name: Install dependencies
5555
run: |
5656
python -m pip install --upgrade pip
57-
pip install -e .[testing]
57+
pip install -e ".[testing]"
5858
5959
- name: Run tests
60-
run: pytest --verbose --color=yes --durations=10
60+
run: pytest
6161

6262
docs:
6363
runs-on: ubuntu-24.04
@@ -66,11 +66,11 @@ jobs:
6666
- uses: actions/checkout@v6
6767
- uses: actions/setup-python@v6
6868
with:
69-
python-version: 3.13
69+
python-version: "3.14"
7070
- name: Install dependencies
7171
run: |
7272
python -m pip install --upgrade pip
73-
pip install -e .[sphinx]
73+
pip install -e ".[sphinx]"
7474
7575
- name: Build docs
7676
run: |

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sphinx:
1111
build:
1212
os: ubuntu-24.04
1313
tools:
14-
python: "3.13"
14+
python: "3.14"
1515

1616
python:
1717
install:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
requires = ["setuptools>=77", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

5+
56
[project]
67
name = "github_activity"
78
description = "Grab recent issue/PR activity from a GitHub repository and render it as markdown."
@@ -34,6 +35,7 @@ sphinx = [
3435
[project.scripts]
3536
github-activity = "github_activity.cli:main"
3637

38+
3739
[tool.setuptools]
3840
zip-safe = false
3941
include-package-data = true
@@ -53,7 +55,6 @@ dependencies = { file = "requirements.txt" }
5355
fallback_version = "0.0.0"
5456

5557
[tool.tbump]
56-
# Uncomment this if your project is hosted on GitHub:
5758
github_url = "https://github.com/executablebooks/github-activity"
5859

5960
[tool.tbump.version]

0 commit comments

Comments
 (0)