Skip to content

Commit 0a1ec0e

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
tox
22
pytest
33
pytest-cov
4-
pytest-flake8>=1.1.0
5-
flake8>=5.0.0
4+
pytest-flake8
5+
flake8
66
dataclasses
77
scanoss
8-
importlib-metadata>=6.0.0
8+
importlib-metadata
99
pytest-xdist

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)