Skip to content

Commit 7104dde

Browse files
authored
Remove Python 3.9 support (#705)
1 parent abc17b6 commit 7104dde

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.9]
12+
python-version: [3.13]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04
1010
strategy:
1111
matrix:
12-
python-version: ["3.9", "3.13"]
12+
python-version: ["3.10", "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
@@ -13,7 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3",
1414
"Operating System :: OS Independent",
1515
]
16-
requires-python = ">=3.9"
16+
requires-python = ">=3.10"
1717
dependencies = [
1818
"gramps[all]>=6.0.4,<6.1.0",
1919
"PYGObject<=3.50.0",

0 commit comments

Comments
 (0)