Skip to content

Commit

Permalink
remove Binder badge until Binder is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Sulzer committed Nov 15, 2018
1 parent bbbcc88 commit fef203e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ ideas/

# setup.py files
*.egg-info
dist/

# coverage
.coverage
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/tinosulzer/PyBaMM.svg?branch=master)](https://travis-ci.org/tinosulzer/PyBaMM)
[![Documentation Status](https://readthedocs.org/projects/pybamm/badge/?version=latest)](https://pybamm.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/tinosulzer/PyBaMM/branch/master/graph/badge.svg)](https://codecov.io/gh/tinosulzer/PyBaMM)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master)
<!-- [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master) -->
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)


Expand Down
2 changes: 1 addition & 1 deletion postBuild
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python setup.py install
pip install .
1 change: 0 additions & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
-r requirements.txt
sphinx>=1.5,!=1.7.3
sphinx-rtd-theme
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from setuptools import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

# Load text for description and license
with open("README.md") as f:
Expand All @@ -23,10 +26,7 @@
"matplotlib>=2.0",
],
extras_require={
"docs": [
"sphinx-rtd-theme>=0.4", # Nice theme for docs
"sphinx>=1.5", # For doc generation
],
"docs": ["sphinx>=1.5"], # For doc generation
"dev": [
"flake8>=3", # For code style checking
"jupyter", # For documentation and testing
Expand Down

0 comments on commit fef203e

Please sign in to comment.