Skip to content

Commit 1885f30

Browse files
committed
Update CI and setup to support Python 3.12 only
1 parent d1e2b18 commit 1885f30

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ name: CI
22

33
on:
44
push:
5+
branches: ["main"]
56
pull_request:
67

78
jobs:
89
test:
910
runs-on: ubuntu-latest
1011
strategy:
1112
matrix:
12-
python-version: ["3.10", "3.11", "3.12"]
13+
python-version: ["3.12"]
1314

1415
steps:
1516
- uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ def read_requirements():
2828
"License :: OSI Approved :: BSD License",
2929
"Operating System :: OS Independent",
3030
],
31-
python_requires=">=3.10",
31+
python_requires=">=3.12",
3232
)

0 commit comments

Comments
 (0)