Install a virtualenv containing many Python versions.
Project description
virtualenv-multiver
virtualenv-multiver is a wrapper around
virtualenv, the standard tool for
creating isolated Python environments. It's built to allow multiple versions of
Python to be usable within a single environment. This is really handy when
you're doing development and testing across a range of Python versions, and you
don't want to have to juggle your active environment for every version.
It also comes with a handy tool called pydo, which can run a Python/Pip
command across a range of Python versions.
Installation
Simple::
$ pip install virtualenv-multiver
Virtualenv Usage
Also simple. To create a new virtual environment, just provide the path to that environment and the versions you want installed. For example::
$ virtualenv-multiver ~/venvs/my-project 2.7 3.8-3.11
Or for pypy::
$ virtualenv-multiver ~/venvs/my-project pypy pypy3
The resulting virtual environment will include all those versions of Python without any additional configuration.
pydo Usage
pydo can run a command across a range of Python versions. It looks for
a commandX.Y or command-X.Y that it can run for the provided command
and for each version of Python.
Usage:
$ pydo [<version> [<version> ...]] <command>
Versions are in X.Y form, and can include ranges like 3.8-3.14.
For example:
$ pydo 2.7 3.6 3.8-3.14 pip install -e .
This will automatically run:
$ python2.7 -m pip install -e .
$ python3.6 -m pip install -e .
$ python3.8 -m pip install -e .
$ python3.9 -m pip install -e .
$ python3.10 -m pip install -e .
$ python3.11 -m pip install -e .
$ python3.12 -m pip install -e .
$ python3.13 -m pip install -e .
$ python3.14 -m pip install -e .
If you don't specify any versions, the Python versions available in the virtualenv-multiver environment will be used.
You can also configure the list of default versions in .pydorc,
pyproject.toml, or setup.cfg.
Configuring pydo
pydo first checks for a $VIRTUAL_ENV/.pydorc file.
If not found, it will check in the current directory and all parent directories for each of these files:
.pydorcpyproject.tomlsetup.cfg
.pydorc
pydo first checks for a .pydorc file. One is automatically generated
in your virtualenv-multiver environment (for environments created using
virtualenv-multiver 3.0 or higher).
Format:
[pydo]
pyvers=<version>[, <version>, ...]
For example:
[pydo]
pyvers=2.7,3.8-3.11
pyproject.toml
pydo next checks for a pyproject.toml file. This requires toml
support in your Python environment.
Format:
[tool.pydo]
pyvers = ["<version>", "..."]
For example:
[tool.pydo]
pyvers = ["2.7", "3.8-3.11"]
setup.cfg
pydo finally checks for a setup.cfg file.
Format:
[pydo]
pyvers=<version>[, <version>, ...]
For example:
[pydo]
pyvers=2.7,3.8-3.11
FAQ
How does virtualenv-multiver work?
virtualenv-multiver runs through the list of Python versions provided and
calls out to virtualenv for each version
After each virtualenv call, it fixes up the tree a bit. This involves:
-
Ensuring symlinks point to the right place (
python2points to the latestpython2.*specified, for instance) -
Patching any installed scripts (such as
pip3.8) and making sure it points to the correct, versioned interpreter -
Moves and patches some binaries and configuration files around to avoid collision issues.
Once done, it sets the top-level symlinks for python2, python3,
pip2, pip3, etc. (any that specify a major version) to point to the
latest version in that series.
It then sets the generic, version-less ones (python, pip, etc.) to
point to the Python 2 versions (if Python 2 is installed), or Python 3 (if
not). This helps ensure compatibility with scripts that expect python to
mean "Python 2".
Are all versions of CPython supported?
Yes. Pretty much. It depends on whether virtualenv itself will support the version.
Is PyPY supported?
Yes. Sorta.
PyPy doesn't cleanly install alongside CPython in a virtual environment, due to CPython and PyPy claiming some of the same files and directories. We only allow PyPy to install independently or alongside another PyPy.
You may have issues even with multiple PyPy installations. They'll install and
run, but will share the same site-packages directory, which is beyond our
control for the moment.
If this isn't a problem for you, go for it. Otherwise, you may want to stick
to a standard virtualenv call for those.
How do I report a bug?
You can file an issue on the GitHub issue tracker.
Who uses this?
We use virtualenv-multiver at Beanbag for
our Review Board and
RBCommons products.
If you use this, let us know and we'll add you to a list here!
What else do you build?
Lots of things. Check out some of our other open source projects.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file virtualenv_multiver-3.0.tar.gz.
File metadata
- Download URL: virtualenv_multiver-3.0.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361cf166575bff627bea9f650c406cf2c867a89697ba9de3dc531afd0d140003
|
|
| MD5 |
29e4906b1600372a0e308b1f3cc3476e
|
|
| BLAKE2b-256 |
78d34361f8725ed108df594b483f7f8c2ab42871258cd5b17339de5b0cfd7815
|
File details
Details for the file virtualenv_multiver-3.0-py3-none-any.whl.
File metadata
- Download URL: virtualenv_multiver-3.0-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c3ec15026ab9ba9c8ef9e9fc1609b2671ad4bfda7b812da08d60e16dd3c2938
|
|
| MD5 |
03b800d1f3cc71dc190a2605310a25b8
|
|
| BLAKE2b-256 |
85aee1f4741ac1457e38d817f0aaae0557bba9ba0dc81fc96609141dbcb002bd
|