Skip to content

Commit

Permalink
and back to 3.9...
Browse files Browse the repository at this point in the history
  • Loading branch information
fxjung committed Aug 14, 2024
1 parent 866ea41 commit ab687f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
repos:
- repo: https://github.com/python/black
rev: 24.3.0
rev: 24.8.0
hooks:
- id: black
language_version: python3.9
language_version: python3.12
- repo: https://github.com/adamchainz/blacken-docs
rev: 1.16.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For detailed instructions, see the `installation guide <https://ridepy.org/howto

If you're in a hurry, here's the gist:

- RidePy works with Python >= 3.9
- RidePy currently works best with Python 3.9
- If you are on platform other than x86-64 Linux, i.e., one that we don't offer wheels for, you will need to first set up a C++ build environment and the `Boost C++ libraries <https://www.boost.org/>`__. On Debian-like systems, this is easily accomplished with

.. code-block:: bash
Expand Down
6 changes: 3 additions & 3 deletions doc/howto/install-ridepy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ This section explains how to set up RidePy on your machine in various ways.
Prerequisites
-------------

RidePy needs at least Python 3.9.
Currently, using Python 3.9 is your best option.

In addition, you should probably use a Python environment for keeping things clean. The following commands should work for Linux and macOS. On Windows, things might have to be done marginally different.

We recommend using either `Anaconda <https://www.anaconda.com/>`__ (which has the added benefit of being able to handle different Python versions):

.. code::
conda create -n ridepy python=3.12
conda create -n ridepy python=3.9
conda activate ridepy
or simply ``venv`` from the Python standard library (assuming you are already using your desired version, alternatively you can additionally use `pyenv <https://github.com/pyenv/pyenv>`__ for managing Python versions):
or simply ``venv`` from the Python standard library (assuming you are already on Python 3.9, alternatively you can additionally use `pyenv <https://github.com/pyenv/pyenv>`__ for managing Python versions):

.. code::
Expand Down

0 comments on commit ab687f8

Please sign in to comment.