Use python3 venvs for python3 tox testenvs
Project description
What is tox-venv?
tox-venv is a plugin that uses Python 3’s builtin venv module for creating test environments, instead of creating them with the virtualenv package. For Python versions that do not include venv (namely 3.2 and earlier), this package does nothing and reverts to tox’s default implementation.
Why use tox-venv?
virtualenv is historically Python 2/3 compatible, however to achieve this, it ships some files that are pinned at their Python 2.6 version, such as the site module (see: pypa/virtualenv#355). This has a few effects:
Builds using the -Werror option fail, as the deprecations are raised before the test suite can run.
Users cannot take advantage of newer features of the site module in their test environments.
Eventually, these deprecations will become exceptions in future versions of Python.
By using the builtin venv module, these issues can be avoided.
Compatibility
tox-venv is compatible with both Python 2 and 3, however it only creates test environments in Python 3.3 and later. Python 3.3 environments are only partially compatible, as not all options (such as --copies/--symlinks) were supported. Environments for Python 3.4 and later are fully compatible.
Release process
Update changelog
Update package version in setup.py
Create git tag for version
Upload release to PyPI
$ pip install -U setuptools wheel
$ rm -rf dist/ build/
$ python setup.py bdist_wheel upload
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file tox_venv-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: tox_venv-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5214e086881cfd1dc511fd01fb3dee1d00e34048aef6331b5ba161ee54003bf4 |
|
MD5 | 07ad45541a21b7bf80f6b02a907c670a |
|
BLAKE2b-256 | aac56dadbfd08049a6f850a1b9358a7f70d0b77e9bab603a3ff01ffb9e5e3b04 |