Skip to content

Commit

Permalink
Merge pull request #476 from jonasdn/jonasdn/python3_5_deprecation
Browse files Browse the repository at this point in the history
Bump Python requirement from 3.5 to 3.6
  • Loading branch information
ataffanel authored Mar 8, 2021
2 parents 272b79b + 23645fe commit 8315920
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To use Crazyradio you will have to [install the drivers](https://github.com/bitc

## From Pypi (Windows, Mac, Linux, ..., with python3)

Each release of the client is pushed to the [pypi repository](https://pypi.org/project/cfclient/). If you have python >= 3.5, it can be installed with pip:
Each release of the client is pushed to the [pypi repository](https://pypi.org/project/cfclient/). If you have python >= 3.6, it can be installed with pip:

```
python3 -m pip install cfclient
Expand All @@ -40,7 +40,7 @@ Mac and windows will also need the SDL2 library to be installed (see bellow)

# Running from source

The Crazyflie client requires Python >= 3.5. The followind instruction describe hot to install it from source.
The Crazyflie client requires Python >= 3.6. The followind instruction describe hot to install it from source.

## Pip and Venv

Expand Down
2 changes: 1 addition & 1 deletion docs/installation/run_from_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you want to develop with the lib too, follow the cflib readme to install it.

## Windows (7/8/10)

Running from source on Windows is tested using the official python build from [python.org](https://python.org). The client works with python version >= 3.5. The procedure is tested with 32bit python. It should work with 64bit python but since it is not tested it can be broken (if so, do not hesitate to send a fix ;-).
Running from source on Windows is tested using the official python build from [python.org](https://python.org). The client works with python version >= 3.6. The procedure is tested with 32bit python. It should work with 64bit python but since it is not tested it can be broken (if so, do not hesitate to send a fix ;-).

To run the client you should install python, make sure to check the "add to path" checkbox during install. You should also have git installed and in your path. Use git to clone the crazyflie client project.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
# except:
# pass

if sys.version_info < (3, 5):
raise "must use python 3.5 or greater"
if sys.version_info < (3, 6):
raise "must use python 3.6 or greater"


# Recover version from Git.
Expand Down

0 comments on commit 8315920

Please sign in to comment.