Skip to content

Commit 6e097a8

Browse files
committed
Docs and meta information update for release.
1 parent 79e1384 commit 6e097a8

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build_wheels_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
SDIST: ${{ matrix.build_sdist || 0 }}
4949
ENABLE_HEADLESS: ${{ matrix.without_gui }}
5050
ENABLE_CONTRIB: ${{ matrix.with_contrib }}
51-
MACOSX_DEPLOYMENT_TARGET: 10.13
51+
MACOSX_DEPLOYMENT_TARGET: '11.0'
5252
steps:
5353
- name: Cleanup
5454
run: find . -mindepth 1 -delete

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -216,15 +216,16 @@ The default ``manylinux2014`` images have been extended with some OpenCV depende
216216

217217
Python 3.x compatible pre-built wheels are provided for the officially supported Python versions (not in EOL):
218218

219-
- 3.6
220219
- 3.7
221220
- 3.8
222221
- 3.9
223222
- 3.10
223+
- 3.11
224224

225225
### Backward compatibility
226226

227227
Starting from 4.2.0 and 3.4.9 builds the macOS Travis build environment was updated to XCode 9.4. The change effectively dropped support for older than 10.13 macOS versions.
228228

229229
Starting from 4.3.0 and 3.4.10 builds the Linux build environment was updated from `manylinux1` to `manylinux2014`. This dropped support for old Linux distributions.
230230

231+
Starting from version 4.7.0 the Mac OS Github Actions build environment was update to version 11. Mac OS 10.x support depricated. See https://github.com/actions/runner-images/issues/5583

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def main():
262262
name=package_name,
263263
version=package_version,
264264
url="https://github.com/opencv/opencv-python",
265-
license="MIT",
265+
license="Apache 2.0",
266266
description="Wrapper package for OpenCV python bindings.",
267267
long_description=long_description,
268268
long_description_content_type="text/markdown",
@@ -279,7 +279,7 @@ def main():
279279
"Intended Audience :: Education",
280280
"Intended Audience :: Information Technology",
281281
"Intended Audience :: Science/Research",
282-
"License :: OSI Approved :: MIT License",
282+
"License :: OSI Approved :: Apache 2.0",
283283
"Operating System :: MacOS",
284284
"Operating System :: Microsoft :: Windows",
285285
"Operating System :: POSIX",
@@ -292,6 +292,7 @@ def main():
292292
"Programming Language :: Python :: 3.8",
293293
"Programming Language :: Python :: 3.9",
294294
"Programming Language :: Python :: 3.10",
295+
"Programming Language :: Python :: 3.11",
295296
"Programming Language :: C++",
296297
"Programming Language :: Python :: Implementation :: CPython",
297298
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)