Installation/Updates

See the following instructions on how to install or update the package from common sources like PyPI. Developers can also install the packages with development dependencies. In case of local development, see the additional sections on how to run unit tests, type checks or how to build the documentation to create all the build artifacts.

See the list of necessary dependencies.

Using PIP to Install from PyPI

The following instruction are using PIP (Package Installer for Python) as a package manager and PyPI (Python Package Index) as a source of Python packages.

PIP might download further packages as listed in package dependencies.

Installing a Wheel Package from PyPI using PIP

Developers can install the pyVersioning package itself or the package with further dependencies for documentation generation (doc), running unit tests (test) or just all (all) dependencies.

See Dependencies for more details.

# Basic pyVersioning package
pip3 install pyVersioning

# Alternatively
python3 -m pip install pyVersioning
# Install with dependencies to generate documentation
pip3 install pyVersioning[doc]

# Alternatively
python3 -m pip install pyVersioning[doc]
# Install with dependencies to run unit tests
pip3 install pyVersioning[test]

# Alternatively
python3 -m pip install pyVersioning[test]
# Install with all developer dependencies
pip3 install pyVersioning[all]

# Alternatively
python3 -m pip install pyVersioning[all]
# Basic pyVersioning package
pip install pyVersioning

# Alternatively
py -m pip install pyVersioning
# Install with dependencies to generate documentation
pip install pyVersioning[doc]

# Alternatively
py -m pip install pyVersioning[doc]
# Install with dependencies to run unit tests
pip install pyVersioning[test]

# Alternatively
py -m pip install pyVersioning[test]
# Install with all developer dependencies
pip install pyVersioning[all]

# Alternatively
py -m pip install pyVersioning[all]

Referencing the package in requirements.txt

When pyVersioning is used by another Python package, it’s recommended to list the dependency to the pyVersioning package in a requirements.txt file.

requirements.txt

pyVersioning ~= 0.15.0

Updating from PyPI using PIP

# Update pyVersioning
pip3 install -U pyVersioning

# Alternatively
python3 -m pip install -U pyVersioning
# Update pyVersioning
pip install -U pyVersioning

# Alternatively
py -m pip install -U pyVersioning

Uninstallation using PIP

# Uninstall pyVersioning
pip3 uninstall pyVersioning

# Alternatively
python3 -m pip uninstall pyVersioning
# Uninstall pyVersioning
pip uninstall pyVersioning

# Alternatively
py -m pip uninstall pyVersioning

Running unit tests

This package is provided with unit tests for pytest. The provided testcases can be executed locally for testing or development purposes. In addition, code coverage including branch coverage can be collected using Coverage.py. All steps provide appropriate artifacts as XML or HTML reports. The artifact output directories are specified in pyproject.toml.

Ensure unit testing requirements are installed.

cd <pyVersioning>

# Running unit tests using pytest
pytest -raP --color=yes tests/unit
cd <pyVersioning>

# Running unit tests using pytest
pytest -raP --color=yes --junitxml=report/unit/unittest.xml --template=html1/index.html --report=report/unit/html/index.html --split-report tests/unit
cd <pyVersioning>

# Running unit tests with code coverage using Coverage.py
coverage run --data-file=.coverage --rcfile=pyproject.toml -m pytest -ra --tb=line --color=yes tests/unit

# Write coverage report to console"
coverage report

# Convert coverage report to HTML
coverage html

# Convert coverage report to XML (Cobertura)
coverage xml
cd <pyVersioning>

# Running unit tests using pytest
pytest -raP --color=yes tests\unit
cd <pyVersioning>

# Running unit tests using pytest
pytest -raP --color=yes --junitxml=report\unit\unittest.xml --template=html1\index.html --report=report\unit\html\index.html --split-report tests\unit
cd <pyVersioning>

# Running unit tests with code coverage using Coverage.py
coverage run --data-file=.coverage --rcfile=pyproject.toml -m pytest -ra --tb=line --color=yes tests\unit

# Write coverage report to console"
coverage report

# Convert coverage report to HTML
coverage html

# Convert coverage report to XML (Cobertura)
coverage xml

Running type checks

This package is provided with type checks. These can be executed locally for testing or development purposes using mypy. The artifact output directory is specified in pyproject.toml.

Ensure unit testing requirements are installed.

cd <pyVersioning>

# Running type checking using mypy
export MYPY_FORCE_COLOR=1
mypy -p pyversioning
cd <pyVersioning>

# Running type checking using mypy
$env:MYPY_FORCE_COLOR = 1
mypy -p pyversioning

Building documentation

The documentation can be build locally using Sphinx. It can generate HTML and LaTeX outputs. In an additional step, the LaTeX output can be translated to a PDF file using a LaTeX environment like MiKTeX.

Ensure documentation requirements are installed.

cd <pyVersioning>

# Adding package root to PYTHONPATH
export PYTHONPATH=$(pwd)
cd doc

# Building documentation using Sphinx
sphinx-build -v -n -b html -d _build/doctrees -j $(nproc) -w _build/html.log . _build/html
cd <pyVersioning>

# Adding package root to PYTHONPATH
export PYTHONPATH=$(pwd)
cd doc

# Building documentation using Sphinx
sphinx-build -v -n -b latex -d _build/doctrees -j $(nproc) -w _build/latex.log . _build/latex

Todo

Describe LaTeX to PDF conversion on Linux using Miktex.

Hint

A Miktex installation is required.

cd <pyVersioning>

# Building documentation using Sphinx
.\doc\make.bat html --verbose
cd <pyVersioning>

# Building documentation using Sphinx
.\doc\make.bat latex --verbose

Todo

Describe LaTeX to PDF conversion on Windows using Miktex.

Hint

A Miktex installation is required.

Local Packaging and Installation via PIP

For development and bug fixing it might be handy to create a local wheel package and also install it locally on the development machine. The following instructions will create a local wheel package (*.whl) and then use PIP to install it. As a user might have a pyVersioning installation from PyPI, it’s recommended to uninstall any previous pyVersioning packages. (This step is also needed if installing an updated local wheel file with same version number. PIP will not detect a new version and thus not overwrite/reinstall the updated package contents.)

Ensure packaging requirements are installed.

cd <pyVersioning>

# Package the code in a wheel (*.whl)
python3 -m build --wheel

# Uninstall the old package
python3 -m pip uninstall -y pyVersioning

# Install from wheel
python3 -m pip install ./dist/pyVersioning-0.15.0-py3-none-any.whl
cd <pyVersioning>

# Package the code in a wheel (*.whl)
py -m build --wheel

# Uninstall the old package
py -m pip uninstall -y pyVersioning

# Install from wheel
py -m pip install .\dist\pyVersioning-0.15.0-py3-none-any.whl

Note

The legacy ways of building a package using setup.py bdist_wheel and installation using setup.py install is not recommended anymore.