Skip to content

Commit 68b7e34

Browse files
authored
Test with Python 3.13 (#571)
* Test with Python 3.13 * Update pyproject.toml * Check with Python 3.12 and Gramps 5.2.4 * Update test.yml * Update test.yml * Update test.yml * Update test.yml * Update test_reports.py * Update test.yml
1 parent 1833899 commit 68b7e34

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
strategy:
1111
matrix:
12-
python-version: ["3.9", "3.12"]
12+
python-version: ["3.9", "3.13"]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
]
1717
requires-python = ">=3.9"
1818
dependencies = [
19-
"gramps-desktop[GUI,i18n]==5.2.*",
19+
"gramps[GUI,i18n]==5.2.*",
2020
"Click>=7.0",
2121
"Flask>=2.1.0",
2222
"Flask-Caching>=2.0.0",

tests/test_endpoints/test_reports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def test_get_reports_report_localized_content(self):
221221
full=True,
222222
)
223223
contents = rv.get_data(as_text=True)
224-
assert "Ahnentafel für" in contents
224+
assert "Ahnentafel Bericht für" in contents
225225

226226
def test_get_reports_report_id_file_one_of_each(self):
227227
"""Test one of each available report."""

0 commit comments

Comments
 (0)