Skip to content

Commit 6250c60

Browse files
committedSep 4, 2024·
Restrict to Python 3.10 or later.
1 parent 7a8a015 commit 6250c60

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed
 

‎.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
os: [ubuntu-20.04, windows-latest]
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
10+
os: [ubuntu-22.04, windows-latest]
11+
python-version: ["3.10", "3.11", "3.12", "pypy3.10"]
1212
max-parallel: 4
1313

1414
steps:

‎pyproject.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,13 @@ classifiers = [
1919
"Natural Language :: English",
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.6",
23-
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8",
25-
"Programming Language :: Python :: 3.9",
2622
"Programming Language :: Python :: 3.10",
2723
"Programming Language :: Python :: 3.11",
2824
"Programming Language :: Python :: 3.12",
2925
"Topic :: Software Development :: Libraries :: Python Modules",
3026
]
3127

32-
requires-python = ">= 3.6"
28+
requires-python = ">= 3.10"
3329

3430
[project.urls]
3531
Homepage = "http://sh13.net/projects/SJSON"
@@ -43,7 +39,7 @@ build-backend = "hatchling.build"
4339
[tool.tox]
4440
legacy_tox_ini = """
4541
[tox]
46-
envlist=py36,py37,py38,py39,py310,py311,py312
42+
envlist=py310,py311,py312
4743
4844
[testenv]
4945
deps=

0 commit comments

Comments
 (0)
Please sign in to comment.