Skip to content

Commit 7afc091

Browse files
committed
Drop python 3.7 and 3.8 support, update CIBW
1 parent 090b313 commit 7afc091

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
platforms: arm64
7777

7878
- name: Build wheels
79-
uses: pypa/cibuildwheel@v2.18.1
79+
uses: pypa/cibuildwheel@v2.21.3
8080
env:
8181
MACOSX_DEPLOYMENT_TARGET: "12"
8282
CIBW_ARCHS_LINUX: 'x86_64 aarch64'

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ classifiers = [
2222
"Operating System :: OS Independent",
2323
"Programming Language :: Python :: 3 :: Only",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.7",
26-
"Programming Language :: Python :: 3.8",
27-
"Programming Language :: Python :: 3.9",
28-
"Programming Language :: Python :: 3.10",
2925
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
3026
"Programming Language :: Python :: Implementation :: CPython",
3127
"Programming Language :: C++",
3228
]
3329

34-
requires-python = ">=3.7"
30+
requires-python = ">=3.9"
3531
dependencies = ["Pillow", "click"]
3632
dynamic = ["version"]
3733

@@ -81,5 +77,5 @@ manylinux-aarch64-image = "manylinux2014"
8177

8278
[tool.black]
8379
line-length = 120 # 80-column is stupid
84-
target-version = ['py37', 'py38', 'py39', 'py310', 'py310']
80+
target-version = ['py39', 'py310', 'py310']
8581
skip-string-normalization = true

0 commit comments

Comments
 (0)