Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
</h1>

![License](https://img.shields.io/github/license/NHSDigital/data-validation-engine)
![Version](https://img.shields.io/github/v/release/NHSDigital/data-validation-engine)
![PyPi](https://img.shields.io/pypi/v/data-validation-engine)
![Conda](https://anaconda.org/nhs/data-validation-engine/badges/version.svg)
[![CI Unit Tests](https://github.com/NHSDigital/data-validation-engine/actions/workflows/ci_testing.yml/badge.svg)](https://github.com/NHSDigital/data-validation-engine/actions/workflows/ci_testing.yml)
[![CI Formatting & Linting](https://github.com/NHSDigital/data-validation-engine/actions/workflows/ci_linting.yml/badge.svg)](https://github.com/NHSDigital/data-validation-engine/actions/workflows/ci_linting.yml)

Expand Down
7 changes: 5 additions & 2 deletions docs/user_guidance/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ You can install the DVE package through python package managers such as [pip](ht
poetry install
```

!!! info
We are working on getting the DVE available via Conda. We will update this page with the relevant instructions once this has been successfully setup.
=== "conda"

```sh
conda install nhs::data-validation-engine
```

Python dependencies are listed in the [`pyproject.toml`](https://github.com/NHSDigital/data-validation-engine/blob/main/pyproject.toml). Many of the dependencies are locked to quite restrictive versions due to complexity of this package. Core packages such as Pydantic, Pyspark and DuckDB are unlikely to receive flexible version constraints as changes in those packages could cause the DVE to malfunction. For less important dependencies, we have tried to make the contraints more flexible. Therefore, we would advise you to install the DVE into a seperate environment rather than trying to integrate it into an existing Python environment.

Expand Down
Loading