Skip to content

Commit

Permalink
build(Python): drop 3.7 support
Browse files Browse the repository at this point in the history
python.org 3.7 CPython is End-of-Life.

wasmtime has build errors.
  • Loading branch information
thewtex committed Sep 21, 2023
1 parent eeb8833 commit 531c71a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cxx-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push,pull_request]

env:
itk-git-tag: "v5.4rc01"
itk-wheel-tag: "v5.3.0"
itk-wheel-tag: "v5.4rc01"
ITKMeshToPolyData-git-tag: "v0.11rc01"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-22.04, windows-2022, macos-12]
python-major-version: [3]
python-minor-version: [7, 8, 9, 10, 11]
python-minor-version: [8, 9, 10, 11]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions packages/core/python/itkwasm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -28,7 +27,7 @@ keywords = [
]
dynamic = ["version"]

requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"numpy",
"typing_extensions",
Expand Down

0 comments on commit 531c71a

Please sign in to comment.