Skip to content

Commit f6798f5

Browse files
committed
Bump Python required version to 3.7
3.6 is no longer supported and we want to switch to asyncio.run which has been added in Python 3.7 Signed-off-by: Julian Oes <[email protected]>
1 parent 5b98892 commit f6798f5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Python wrapper is based on a gRPC client communicating with the gRPC server
99

1010
## Important Notes
1111

12-
- Python 3.6+ is required (because the wrapper is based on [asyncio](https://docs.python.org/3.7/library/asyncio.html)).
12+
- Python 3.7+ is required (because the wrapper is based on [asyncio](https://docs.python.org/3.7/library/asyncio.html)).
1313
- You may need to run `pip3` instead of `pip` and `python3` instead of `python`, depending of your system defaults.
1414
- Auterion has a [Getting started with MAVSDK-Python](https://auterion.com/getting-started-with-mavsdk-python/) guide if you're a beginner and not sure where to start.
1515

mavsdk/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ MAVSDK-Python API reference
2323
Important Notes
2424
---------------
2525

26-
- Python 3.6+ is required.
26+
- Python 3.7+ is required.
2727
- You may need to run ``pip3`` instead of ``pip`` and ``python3`` instead of ``python``, depending of your system defaults.
2828
- Auterion has a _Getting started with MAVSDK-Python: https://auterion.com/getting-started-with-mavsdk-python/ guide if you're a beginner and not sure where to start.
2929

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,15 @@ def version():
136136
url="https://github.com/mavlink/MAVSDK-Python",
137137
maintainer="Jonas Vautherin, Julian Oes",
138138
139-
python_requires='>=3.6',
139+
python_requires='>=3.7',
140140
include_package_data=True,
141141
cmdclass={'build': custom_build},
142142

143143
classifiers=[
144144
"Development Status :: 5 - Production/Stable",
145145
"Intended Audience :: Developers",
146146
"License :: OSI Approved :: BSD License",
147-
"Programming Language :: Python :: 3.6",
147+
"Programming Language :: Python :: 3.7",
148148
],
149149

150150
packages=find_packages(exclude=["other", "docs", "tests", "examples",

0 commit comments

Comments
 (0)