Skip to content

Commit bccd05c

Browse files
committed
Test on 3.14 and 3.14t, drop 3.9
1 parent cf1b407 commit bccd05c

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1313
os: [ubuntu-latest, windows-latest, macos-latest]
1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,9 @@ jobs:
1010
runs-on: ${{ matrix.os }}
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-dev", "3.14t-dev"]
1414
numpy: [0, 1]
1515
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
16-
# Skip 3.9 on macos-14 - it only has 3.10+
17-
exclude:
18-
- python-version: "3.9"
19-
os: macos-14
2016
steps:
2117
- uses: actions/checkout@v4
2218
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,14 @@ def get_long_description():
6363
"Issues": "https://github.com/simonw/sqlite-utils/issues",
6464
"CI": "https://github.com/simonw/sqlite-utils/actions",
6565
},
66-
python_requires=">=3.9",
66+
python_requires=">=3.10",
6767
classifiers=[
6868
"Development Status :: 5 - Production/Stable",
6969
"Intended Audience :: Developers",
7070
"Intended Audience :: Science/Research",
7171
"Intended Audience :: End Users/Desktop",
7272
"Topic :: Database",
7373
"License :: OSI Approved :: Apache Software License",
74-
"Programming Language :: Python :: 3.9",
7574
"Programming Language :: Python :: 3.10",
7675
"Programming Language :: Python :: 3.11",
7776
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)