Merge pull request #1 from datpy/get-travis-running
Install libsodium in the CI environment
This commit is contained in:
commit
d0799d36db
@ -6,11 +6,3 @@ build:
|
|||||||
sphinx:
|
sphinx:
|
||||||
configuration: documentation/source/conf.py
|
configuration: documentation/source/conf.py
|
||||||
fail_on_warning: true
|
fail_on_warning: true
|
||||||
|
|
||||||
python:
|
|
||||||
version: 3.7
|
|
||||||
install:
|
|
||||||
- method: pip
|
|
||||||
path: .
|
|
||||||
extra_requirements:
|
|
||||||
- docs
|
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
language: python
|
language: python
|
||||||
|
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libsodium-dev
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- python: 3.6
|
- python: 3.6
|
||||||
|
@ -6,3 +6,4 @@ master_doc = 'index'
|
|||||||
project = 'hypercore-crypto'
|
project = 'hypercore-crypto'
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
extensions = ['sphinx.ext.autodoc', 'sphinx_autodoc_typehints']
|
extensions = ['sphinx.ext.autodoc', 'sphinx_autodoc_typehints']
|
||||||
|
autodoc_mock_imports = ['pysodium'] # no libsodium in the RTD environment
|
||||||
|
Loading…
Reference in New Issue
Block a user