Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add development instructions #988

Merged
merged 26 commits into from
Sep 25, 2024
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
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,16 @@ jobs:
sudo apt-get update
sudo apt-get install -y openmpi-bin libopenmpi3 libopenmpi-dev

- name: install python dependencies
run: pip install -r requirements.txt

- name: install test dependencies
run: >-
pip install coverage pytest pytest-cov hypothesis pytest-mock mypy
fastapi==0.110.1 httpx==0.27.0 mpi4py==3.1.6

- name: install haddock3
run: pip install -v .
run: python setup.py -v develop

## Disabled for now until we figure out a good configuration ##
# - name: check types
Expand Down Expand Up @@ -63,3 +66,8 @@ jobs:
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./coverage.xml

- name: check if docs are buildable
# this step can fail
continue-on-error: true
run: tox -e docs
28 changes: 0 additions & 28 deletions .github/workflows/docs.yml

This file was deleted.

116 changes: 116 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
# Developing HADDOCK3

This file provides information on how to setup a development environment for HADDOCK3.

- [System requirements](#system-requirements)
- [Setting up the development environment](#setting-up-the-development-environment)
- [Clone the repository](#clone-the-repository)
- [Python environment](#python-environment)
- [Install Python dependencies](#install-python-dependencies)
- [Running tests](#running-tests)

## System requirements

- Python 3.9
- OpenMPI

### Installing system dependencies

Below the instructions are provided for a Ubuntu system using `apt-get`. If you are using a different system, please refer to the respective package manager - `yum`, `dnf`, `pacman`, `homebrew`, `port`, etc.

```bash
sudo apt-get update &&
# Needed for building Python
sudo apt-get install build-essential python-setuptools python-pip &&
sudo apt-get install libncursesw5-dev libgdbm-dev libc6-dev &&
sudo apt-get install zlib1g-dev libsqlite3-dev tk-dev &&
sudo apt-get install libssl-dev openssl &&
sudo apt-get install libffi-dev &&
# Needed for haddock3 installation
sudo apt-get install git gcc &&
# Needed to run the MPI related tests
sudo apt-get install openmpi-bin libopenmpi3 libopenmpi-dev
```

After all the system-dependencies are in place, download and compile python.

**Conda is NOT recommended for development**

```bash
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz
tar -xf Python-3.9.6.tgz
cd Python-3.9.6
./configure --enable-optimizations
sudo make altinstall -j 8
```

Then `python3.9` should be available on your system at `/usr/local/bin/python3.9`

On **OSX**, you can use a package-manager such as [brew](https://brew.sh) to install Python 3.9.

> Please keep in mind installing python with a package manager can mask system dependencies that your development might add. That's why we recommended you install it from source.

```bash
brew install python@3.9
```

## Setting up the development environment

### Clone the repository

```bash
git clone https://github.com/haddocking/haddock3.git
cd haddock3
```

### Python environment

We recommend you use Python's native virtual environment to manage the dependencies.

```bash
python3.9 -m venv .venv
source .venv/bin/activate
```

### Install python dependencies

Install both project dependencies and test dependencies using pip.

```bash
pip install -r requirements.txt &&
pip install \
coverage==7.2.5 \
pytest==7.3.1 \
pytest-cov==4.0.0 \
hypothesis==6.75.1 \
pytest-mock==3.12.0 \
fastapi==0.110.1 \
httpx==0.27.0 \
mpi4py==3.1.6
```

> If you are using a Mac, if the installation of mpi4py fails, run first `brew install mpi4py`

### Install haddock3 in development mode.

In this mode the files are linked to the appropriate paths inside the python environment;

```bash
python setup.py develop
```

## Running tests

In `haddock3` we use the pytest framework, the tests are located in `tests/` (unit) and `integration_tests/` directories.

```bash
pytest
```

## Installation in an HPC environment

**Please get in contact with the system administrator before doing development in a shared HPC environment.**

For installation in an HPC environment we recommend to check the installed Python versions on the system and also importantly if an `openmpi` (or other custom MPI) installation is available on the system.
Those are often offered via the `module` command.
If you only intend to develop haddock3 using the multiprocessing scheduler, the above instructions should be fine. But to harvest the MPI capabilities of an HPC system it is best to build haddock3 using the installed MPI version on the HPC system.
15 changes: 14 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext
from setuptools.command.develop import develop
from setuptools.command.install import install


Expand Down Expand Up @@ -144,6 +145,14 @@ def get_arch():
return f"{machine}-{system}"


class CustomDevelop(develop):

def run(self):
"""Wrapper class to run the installation also when using `python setup.py develop`"""
self.run_command("install")
develop.run(self)


with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()

Expand Down Expand Up @@ -226,6 +235,10 @@ def read_description(*names, **kwargs) -> str:
"haddock3-restraints = haddock.clis.cli_restraints:maincli",
]
},
cmdclass={"build_ext": CustomBuild, "install": CustomInstall},
cmdclass={
"build_ext": CustomBuild,
"install": CustomInstall,
"develop": CustomDevelop,
},
ext_modules=cpp_extensions,
)
Loading