Skip to content

Commit

Permalink
Fix build errors by pinning some packages. (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
richadams authored Aug 14, 2018
1 parent cee55ea commit 56a4403
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ jobs:
- image: circleci/python:2.7.14
steps:
- checkout
- run: 'sudo pip install mkdocs-bootswatch==0.1.0'
- run: 'sudo pip install mkdocs-bootstrap==0.1.1'
- run: 'sudo pip install mkdocs==0.15.3'
- run: 'sudo pip install mkdocs-material==0.2.4'
- run: 'sudo pip install pymdown-extensions'
Expand All @@ -17,6 +19,8 @@ jobs:
steps:
- checkout
- run: 'sudo pip install awscli'
- run: 'sudo pip install mkdocs-bootswatch==0.1.0'
- run: 'sudo pip install mkdocs-bootstrap==0.1.1'
- run: 'sudo pip install mkdocs==0.15.3'
- run: 'sudo pip install mkdocs-material==0.2.4'
- run: 'sudo pip install pymdown-extensions'
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ You can view the documentation [directly](/docs/index.md) in this repository, or
## Development
We use [MkDocs](http://www.mkdocs.org/) to create a static site from this repository. For local development,

1. Install v0.1.0 of [MkDocs Bootswatch](https://github.com/mkdocs/mkdocs-bootswatch) `pip install mkdocs-bootswatch==0.1.0`
1. Install v0.1.1 of [MkDocs Bootstrap](https://github.com/mkdocs/mkdocs-bootstrap) `pip install mkdocs-bootstrap==0.1.1`
1. Install v0.15.3 of [MkDocs](http://www.mkdocs.org/#installation). `pip install mkdocs==0.15.3`
1. Install v0.2.4 of the [MkDocs Material theme](https://github.com/squidfunk/mkdocs-material). `pip install mkdocs-material==0.2.4`
1. To test locally, run `mkdocs serve` from the project directory.
Expand Down

0 comments on commit 56a4403

Please sign in to comment.