Skip to content

Commit

Permalink
refresh python support list
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed May 28, 2024
1 parent 2a10ec5 commit 7e14d7b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ jobs:
matrix:
include:
# MacOS
- python: '3.7'
os: macos-latest
- python: '3.8'
os: macos-latest
- python: '3.9'
Expand All @@ -56,11 +54,9 @@ jobs:
os: macos-latest
- python: '3.11'
os: macos-latest
- python: '3.12'
os: macos-latest
# Windows
- python: '3.6'
os: windows-latest
- python: '3.7'
os: windows-latest
- python: '3.8'
os: windows-latest
- python: '3.9'
Expand All @@ -69,6 +65,8 @@ jobs:
os: windows-latest
- python: '3.11'
os: windows-latest
- python: '3.12'
os: windows-latest

steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ jobs:

matrix:
include:
- toxenv: py37
python: "3.7"
os: ubuntu-latest
- toxenv: py38
python: "3.8"
os: ubuntu-latest
Expand All @@ -61,6 +58,9 @@ jobs:
- toxenv: py311
python: "3.11"
os: ubuntu-latest
- toxenv: py312
python: "3.12"
os: ubuntu-latest
- toxenv: py37
python: "3.7"
os: windows-latest
Expand All @@ -76,9 +76,6 @@ jobs:
- toxenv: py311
python: "3.11"
os: windows-latest
- toxenv: py37
python: "3.7"
os: macos-latest
- toxenv: py38
python: "3.8"
os: macos-latest
Expand All @@ -91,6 +88,9 @@ jobs:
- toxenv: py311
python: "3.11"
os: macos-latest
- toxenv: py311
python: "3.12"
os: macos-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ function build_wheel() {
/opt/python/$1/bin/pip wheel . -f . -w dist
}

build_wheel cp37-cp37m
build_wheel cp38-cp38
build_wheel cp39-cp39
build_wheel cp310-cp310
build_wheel cp311-cp311
build_wheel cp312-cp312

cd dist

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.7, <4",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,py3{7-11}
envlist = lint,py3{8-12}

[testenv]
passenv = COVERALLS_*, FORCE_COLOR
Expand Down

0 comments on commit 7e14d7b

Please sign in to comment.