File tree Expand file tree Collapse file tree 5 files changed +42
-26
lines changed Expand file tree Collapse file tree 5 files changed +42
-26
lines changed Original file line number Diff line number Diff line change 8
8
configuration : docs/conf.py
9
9
10
10
# Python config
11
+ build :
12
+ image : latest
11
13
python :
12
14
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,25 @@ notifications:
9
9
python :
10
10
- " 3.6"
11
11
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
+
12
21
install :
13
- - which pip
22
+ - conda env create -n climpred-dev --file ci/environment-dev-3.6.yml
23
+ - conda activate climpred-dev
24
+ - conda install pip
25
+ - conda list
26
+ - which conda
14
27
- which python
15
28
- pip install -r docs/requirements.txt
29
+ - python setup.py install --user
30
+
16
31
17
32
script :
18
33
- 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 1
1
# Hard requirements
2
2
# 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