diff --git a/.circleci/config.yml b/.circleci/config.yml index d99760119e3fd31b129d6c0943a2bc02043ad405..76112c33096db389f4b85096ba22cf629422e27f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,15 +15,18 @@ jobs: - run: name: setup command: | - sudo pip install black isort + sudo pip install black isort numpy + sudo pip install -r requirements.txt --progress-bar off - run: name: run black command: | - black . --line-length 79 --check --diff + black . --line-length 79 setup.py --diff + black . --line-length 79 setup.py --check - run: name: run isort command: | - isort . -rc --multi-line 3 --trailing-comma --force-grid-wrap 0 --line-width 79 --combine-as + isort . -rc --multi-line 3 --trailing-comma --force-grid-wrap 0 --line-width 79 --combine-as -o torch -o pytest -o torchvision -o matplotlib --diff + isort . -rc --multi-line 3 --trailing-comma --force-grid-wrap 0 --line-width 79 --combine-as -o torch -o pytest -o torchvision -o matplotlib --check-only install_and_test_ubuntu: <<: *gpu diff --git a/README.md b/README.md index 197960b7b382de6059b2431e5d3e4e9b62459bf2..5b9bc1a57f3e03427c7d315191a18172d4efe2b7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +[](https://github.com/facebookresearch/habitat-api/blob/master/LICENSE) +[](https://circleci.com/gh/facebookresearch/habitat-api) +[](https://github.com/facebookresearch/habitat-api/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) + Habitat-API ============================== diff --git a/docs/source/conf.py b/docs/source/conf.py index 9388f6d91270d1009dace17e86cf297462ec51f0..44327f530754e438e206238ff0c01ee5b84af9c7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -32,11 +32,10 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -import sphinx_rtd_theme import recommonmark +import sphinx_rtd_theme from recommonmark.transform import AutoStructify - extensions = [ "sphinx.ext.autodoc", "sphinx.ext.doctest",