From c6d605ab961fa0b3b25e76246e5da8d02d5d0def Mon Sep 17 00:00:00 2001 From: NirAz Date: Sun, 21 Feb 2021 13:14:44 +0200 Subject: [PATCH 1/3] update python package descriptors for python 3.8 + 3.9 --- wrappers/python/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py index ff98ff3093..de4ba2617b 100644 --- a/wrappers/python/setup.py +++ b/wrappers/python/setup.py @@ -63,6 +63,8 @@ def __len__(self): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Multimedia :: Video', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Human Machine Interfaces', From c0f0b4b8c046d288063e38de22cf22657dfadbc4 Mon Sep 17 00:00:00 2001 From: NirAz Date: Sun, 21 Feb 2021 15:12:41 +0200 Subject: [PATCH 2/3] remove classifiers for python 3.4 & 3.5 --- wrappers/python/setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py index de4ba2617b..749b845ddc 100644 --- a/wrappers/python/setup.py +++ b/wrappers/python/setup.py @@ -59,8 +59,6 @@ def __len__(self): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', From 422a9e1c53fa4347eb2a9dbdeedb335f1e9a8368 Mon Sep 17 00:00:00 2001 From: NirAz Date: Sun, 21 Feb 2021 21:22:54 +0200 Subject: [PATCH 3/3] specify python 3 supported sub-versions on python readme file --- wrappers/python/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/python/readme.md b/wrappers/python/readme.md index 42eaea5419..a28d9e994b 100644 --- a/wrappers/python/readme.md +++ b/wrappers/python/readme.md @@ -20,7 +20,7 @@ Package is available at https://pypi.python.org/pypi/pyrealsense2 To install the package, run: > `pip install pyrealsense2` -Windows users can install the RealSense SDK 2.0 from the release tab to get pre-compiled binaries of the wrapper, for both x86 and x64 architectures. (Both Python 2.7 and Python 3 are supported). +Windows users can install the RealSense SDK 2.0 from the release tab to get pre-compiled binaries of the wrapper, for both x86 and x64 architectures. (Both Python 2.7 and Python 3 (3.6, 3.7, 3.8, 3.9) are supported). ## Building From Source