Skip to content

Commit

Permalink
Merge pull request #54 from sunpy/ci
Browse files Browse the repository at this point in the history
Pin werkzeug to < 1
  • Loading branch information
nabobalis authored Feb 12, 2020
2 parents 16c69c1 + 85ad324 commit b84c452
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apt-run: &apt-install
docs-install: &docs-install
name: Install Python dependencies
command: |
pip install werkzeug sphinx alabaster invoke python-dateutil sphinx-automodapi nbsphinx ipython
pip install werkzeug==0.16.1 sphinx alabaster invoke python-dateutil sphinx-automodapi nbsphinx==0.4.3 ipython
version: 2
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
global:
- LOCALE=default
- CONDA_CHANNELS="conda-forge"
- CONDA_DEPENDENCIES="sphinx werkzeug alabaster invoke graphviz nbsphinx"
- CONDA_DEPENDENCIES="sphinx werkzeug==0.16.1 alabaster invoke graphviz nbsphinx==0.4.3"
- PIP_DEPENDENCIES="sphinx-automodapi"

install:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ test4:
test5:
set -e; mkdir -p testablog; printf "testablog\nABlog\nABlog Team\nhttps://ablog.readthedocs.org" | ablog start; cd testablog; ablog build; cd ../..; rm -rf test

tests: test test1 test2 test3 test4 test5 demo
tests: test test1 test2 test3 test4 test5
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install:
- cmd: conda update conda --quiet
- cmd: conda config --add channels conda-forge
- cmd: conda config --set channel_priority strict
- cmd: conda install sphinx werkzeug alabaster invoke graphviz nbsphinx --quiet
- cmd: conda install sphinx werkzeug==0.16.1 alabaster invoke graphviz nbsphinx==0.4.3 --quiet
- cmd: python -m pip install --upgrade pip
- cmd: pip install -e .[all]

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install_requires =
[options.extras_require]
notebook =
ipython
nbsphinx
nbsphinx<0.5.0

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit b84c452

Please sign in to comment.