File tree Expand file tree Collapse file tree 5 files changed +40
-27
lines changed
Expand file tree Collapse file tree 5 files changed +40
-27
lines changed Original file line number Diff line number Diff line change 88 configuration : docs/conf.py
99
1010# Python config
11+ build :
12+ image : latest
1113python :
1214 version : 3.6
13- install :
14- - requirements : docs/requirements.txt
15+ conda :
16+ environment : docs/environment.yml
Original file line number Diff line number Diff line change @@ -9,10 +9,22 @@ notifications:
99python :
1010 - " 3.6"
1111
12+ before_install :
13+ - wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
14+ - bash miniconda.sh -b -p $HOME/miniconda
15+ - export PATH="$HOME/miniconda/bin:$PATH"
16+ - hash -r
17+ - conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
18+ - conda update -q conda
19+ - conda info -a
20+
1221install :
13- - which pip
22+ - conda env create -n proplot-dev --file docs/environment.yml
23+ - conda activate proplot-dev
24+ - conda install pip
25+ - conda list
26+ - which conda
1427 - which python
15- - pip install -r docs/requirements.txt
1628
1729script :
1830 - pushd docs
Original file line number Diff line number Diff line change 1+ name : proplot-dev
2+ channels :
3+ - conda-forge
4+ dependencies :
5+ - pip
6+ - numpy
7+ - xarray
8+ - pandas
9+ - matplotlib
10+ - cartopy
11+ - basemap
12+ - sphinx
13+ - nbsphinx
14+ - ipython
15+ - ipykernel
16+ - pip :
17+ - lxml
18+ - pyyaml
19+ - sphinx_rtd_theme
20+ - git+https://github.com/lukelbd/sphinx-automodapi@v0.6.proplot-mods
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Hard requirements
22# TODO: Remove lxml after #50 merged
3- matplotlib >= 2.2
4- numpy >= 1.11
5- lxml >= 4.0.0
3+ matplotlib
4+ lxml
You can’t perform that action at this time.
0 commit comments