remove libsasl2-dev dependency

This commit is contained in:
Max Erenberg 2021-08-24 20:50:34 +00:00
parent 51737585bd
commit 95e167578f
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ steps:
# way to share system packages between steps # way to share system packages between steps
commands: commands:
# install dependencies # install dependencies
- apt update && apt install -y libkrb5-dev libsasl2-dev python3-dev - apt update && apt install -y libkrb5-dev python3-dev
- python3 -m venv venv - python3 -m venv venv
- . venv/bin/activate - . venv/bin/activate
- pip install -r dev-requirements.txt - pip install -r dev-requirements.txt

View File

@ -54,7 +54,7 @@ messages get accepted (by default they get held).
#### Dependencies #### Dependencies
Next, install and activate a virtualenv: Next, install and activate a virtualenv:
```sh ```sh
sudo apt install libkrb5-dev libsasl2-dev python3-dev sudo apt install libkrb5-dev python3-dev
python3 -m venv venv python3 -m venv venv
. venv/bin/activate . venv/bin/activate
pip install -r requirements.txt pip install -r requirements.txt