Skip to content

Commit ce8c0cf

Browse files
Set action for 3.11 only and limit python <3.13
Signed-off-by: Wonjae Park <[email protected]>
1 parent d009eeb commit ce8c0cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717
strategy:
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12"]
19+
python-version: ["3.11"]
2020
os: [ubuntu-latest, windows-latest]
2121
runs-on: ${{ matrix.os }}
2222
steps:
@@ -35,7 +35,7 @@ jobs:
3535
build_macos:
3636
strategy:
3737
matrix:
38-
python-version: ["3.10", "3.11", "3.12"]
38+
python-version: ["3.11"]
3939
runs-on: macos-latest
4040
steps:
4141
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12", ],
32-
python_requires=">=3.10",
32+
python_requires=">=3.10, <3.13",
3333
install_requires=required,
3434
entry_points={
3535
"console_scripts": [

0 commit comments

Comments
 (0)